@@ -258,46 +258,46 @@ DROP ROLE testuser
258
258
259
259
user root
260
260
261
- skipif config local-mixed-25.2
261
+ skipif config local-mixed-25.2 local-mixed-25.3
262
262
let $testuser_job_id
263
263
SELECT id FROM system.jobs WHERE owner = 'testuser' LIMIT 1
264
264
265
- skipif config local-mixed-25.2
265
+ skipif config local-mixed-25.2 local-mixed-25.3
266
266
let $testuser2_job_id
267
267
SELECT id FROM system.jobs WHERE owner = 'testuser2' LIMIT 1
268
268
269
- skipif config local-mixed-25.2
269
+ skipif config local-mixed-25.2 local-mixed-25.3
270
270
let $node_job_id
271
271
SELECT id FROM system.jobs WHERE owner = 'node' LIMIT 1
272
272
273
- skipif config local-mixed-25.2
273
+ skipif config local-mixed-25.2 local-mixed-25.3
274
274
# Verify a simple transfer by an admin from testuser to testuser2 and back.
275
275
statement ok
276
276
ALTER JOB $testuser_job_id OWNER TO testuser2
277
277
278
- skipif config local-mixed-25.2
278
+ skipif config local-mixed-25.2 local-mixed-25.3
279
279
query T
280
280
SELECT owner FROM system.jobs WHERE id = $testuser_job_id
281
281
----
282
282
testuser2
283
283
284
- skipif config local-mixed-25.2
284
+ skipif config local-mixed-25.2 local-mixed-25.3
285
285
statement ok
286
286
ALTER JOB $testuser_job_id OWNER TO testuser
287
287
288
- skipif config local-mixed-25.2
288
+ skipif config local-mixed-25.2 local-mixed-25.3
289
289
query T
290
290
SELECT owner FROM system.jobs WHERE id = $testuser_job_id
291
291
----
292
292
testuser
293
293
294
294
# Verify that ownership cannot transfer to or from 'node'.
295
295
296
- skipif config local-mixed-25.2
296
+ skipif config local-mixed-25.2 local-mixed-25.3
297
297
statement error cannot transfer ownership
298
298
ALTER JOB $node_job_id OWNER TO testuser
299
299
300
- skipif config local-mixed-25.2
300
+ skipif config local-mixed-25.2 local-mixed-25.3
301
301
statement error cannot transfer ownership
302
302
ALTER JOB $testuser_job_id OWNER TO node
303
303
@@ -316,58 +316,58 @@ CREATE USER testuser3
316
316
statement ok
317
317
GRANT testrole TO testuser3
318
318
319
- skipif config local-mixed-25.2
319
+ skipif config local-mixed-25.2 local-mixed-25.3
320
320
statement ok
321
321
ALTER JOB $testuser_job_id OWNER TO testrole
322
322
323
- skipif config local-mixed-25.2
323
+ skipif config local-mixed-25.2 local-mixed-25.3
324
324
query T
325
325
SELECT owner FROM system.jobs WHERE id = $testuser_job_id
326
326
----
327
327
testrole
328
328
329
- skipif config local-mixed-25.2
329
+ skipif config local-mixed-25.2 local-mixed-25.3
330
330
# Verify testuser2 can transfer ownership to themselves and back to testuser.
331
331
statement ok
332
332
ALTER JOB $testuser_job_id OWNER TO testuser2
333
333
334
- skipif config local-mixed-25.2
334
+ skipif config local-mixed-25.2 local-mixed-25.3
335
335
query T
336
336
SELECT owner FROM system.jobs WHERE id = $testuser_job_id
337
337
----
338
338
testuser2
339
339
340
- skipif config local-mixed-25.2
340
+ skipif config local-mixed-25.2 local-mixed-25.3
341
341
statement ok
342
342
ALTER JOB $testuser_job_id OWNER TO testuser
343
343
344
- skipif config local-mixed-25.2
344
+ skipif config local-mixed-25.2 local-mixed-25.3
345
345
query T
346
346
SELECT owner FROM system.jobs WHERE id = $testuser_job_id
347
347
----
348
348
testuser
349
349
350
350
user testuser3
351
351
352
- skipif config local-mixed-25.2
352
+ skipif config local-mixed-25.2 local-mixed-25.3
353
353
# Verify testuser3 cannot transfer since they do not own it, including via role.
354
354
statement error testuser3 does not own job
355
355
ALTER JOB $testuser_job_id OWNER TO testuser3
356
356
357
357
# Now move ownership to testrole so testuser3 can transfer it.
358
358
user testuser2
359
359
360
- skipif config local-mixed-25.2
360
+ skipif config local-mixed-25.2 local-mixed-25.3
361
361
statement ok
362
362
ALTER JOB $testuser_job_id OWNER TO testrole
363
363
364
364
user testuser3
365
365
366
- skipif config local-mixed-25.2
366
+ skipif config local-mixed-25.2 local-mixed-25.3
367
367
statement ok
368
368
ALTER JOB $testuser_job_id OWNER TO testuser3
369
369
370
- skipif config local-mixed-25.2
370
+ skipif config local-mixed-25.2 local-mixed-25.3
371
371
# Verify testuser3, who is not an admin, cannot transfer to otherrole which they
372
372
# are not a member of.
373
373
statement error testuser3 cannot transfer ownership to otherrole
0 commit comments