blob: 0d4ea678b3722957f19b4c95a58a3575487a78be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
|
--
-- XC_SEQUENCE
--
-- Check of callback mechanisms on GTM
-- Sequence DROP and CREATE
-- Rollback a creation
BEGIN;
CREATE SEQUENCE xc_sequence_1;
SELECT nextval('xc_sequence_1'); -- ok
nextval
---------
1
(1 row)
ROLLBACK;
SELECT nextval('xc_sequence_1'); -- fail
ERROR: relation "xc_sequence_1" does not exist
LINE 1: SELECT nextval('xc_sequence_1');
^
-- Commit a creation
BEGIN;
CREATE SEQUENCE xc_sequence_1;
SELECT nextval('xc_sequence_1'); -- ok
nextval
---------
1
(1 row)
COMMIT;
SELECT nextval('xc_sequence_1'); -- ok
nextval
---------
2
(1 row)
-- Rollback a drop
BEGIN;
DROP SEQUENCE xc_sequence_1;
SELECT nextval('xc_sequence_1'); -- fail
ERROR: relation "xc_sequence_1" does not exist
LINE 1: SELECT nextval('xc_sequence_1');
^
ROLLBACK;
SELECT nextval('xc_sequence_1'); -- ok, previous transaction failed
nextval
---------
3
(1 row)
-- Commit a drop
BEGIN;
DROP SEQUENCE xc_sequence_1;
COMMIT;
SELECT nextval('xc_sequence_1'); -- fail
ERROR: relation "xc_sequence_1" does not exist
LINE 1: SELECT nextval('xc_sequence_1');
^
-- SEQUENCE RENAME TO
-- Rollback a renaming
CREATE SEQUENCE xc_sequence_1;
SELECT nextval('xc_sequence_1'); -- ok
nextval
---------
1
(1 row)
BEGIN;
ALTER SEQUENCE xc_sequence_1 RENAME TO xc_sequence_2;
SELECT nextval('xc_sequence_2'); -- ok
nextval
---------
2
(1 row)
ROLLBACK;
SELECT nextval('xc_sequence_1'); -- ok
nextval
---------
3
(1 row)
-- Commit a renaming
BEGIN;
ALTER SEQUENCE xc_sequence_1 RENAME TO xc_sequence_2;
SELECT nextval('xc_sequence_2'); -- ok
nextval
---------
4
(1 row)
COMMIT;
SELECT nextval('xc_sequence_2'); -- ok
nextval
---------
5
(1 row)
DROP SEQUENCE xc_sequence_2;
-- Columns with SERIAL
-- Serial sequence is named xc_sequence_tab1_col2_seq
CREATE TABLE xc_sequence_tab1 (col1 int, col2 serial) DISTRIBUTE BY ROUNDROBIN;
-- Some data
INSERT INTO xc_sequence_tab1 VALUES (1, DEFAULT);
INSERT INTO xc_sequence_tab1 VALUES (2, DEFAULT);
SELECT col1, col2 FROM xc_sequence_tab1 ORDER BY 1;
col1 | col2
------+------
1 | 1
2 | 2
(2 rows)
-- Rollback a SERIAL column drop
BEGIN;
ALTER TABLE xc_sequence_tab1 DROP COLUMN col2;
INSERT INTO xc_sequence_tab1 VALUES (3);
SELECT col1 FROM xc_sequence_tab1 ORDER BY 1;
col1
------
1
2
3
(3 rows)
ROLLBACK;
SELECT nextval('xc_sequence_tab1_col2_seq'); -- ok
nextval
---------
3
(1 row)
-- Commit a SERIAL column drop
BEGIN;
ALTER TABLE xc_sequence_tab1 DROP COLUMN col2;
INSERT INTO xc_sequence_tab1 VALUES (3);
SELECT col1 FROM xc_sequence_tab1 ORDER BY 1;
col1
------
1
2
3
(3 rows)
COMMIT;
DROP TABLE xc_sequence_tab1;
-- Need to recreate here, serial column is no more
CREATE TABLE xc_sequence_tab1 (col1 int, col2 serial) DISTRIBUTE BY ROUNDROBIN;
INSERT INTO xc_sequence_tab1 VALUES (1234, DEFAULT);
SELECT col1, col2 FROM xc_sequence_tab1 ORDER BY 1;
col1 | col2
------+------
1234 | 1
(1 row)
-- Rollback of a table with SERIAL
BEGIN;
DROP TABLE xc_sequence_tab1;
ROLLBACK;
SELECT nextval('xc_sequence_tab1_col2_seq'); -- ok
nextval
---------
2
(1 row)
-- Commit of a table with SERIAL
BEGIN;
DROP TABLE xc_sequence_tab1;
COMMIT;
-- Recreate a sequence with the same name as previous SERIAL one
CREATE SEQUENCE xc_sequence_tab1_col2_seq START 2344;
SELECT nextval('xc_sequence_tab1_col2_seq'); -- ok
nextval
---------
2344
(1 row)
DROP SEQUENCE xc_sequence_tab1_col2_seq;
-- As simple test that sequences are dropped properly
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
DROP SEQUENCE xl_s1;
-- Check if rollback reverses sequence drop properly
CREATE SEQUENCE xl_s1;
BEGIN;
DROP SEQUENCE xl_s1;
ROLLBACK;
DROP SEQUENCE xl_s1;
-- Check if commit makes sequence drop permanent
CREATE SEQUENCE xl_s1;
BEGIN;
DROP SEQUENCE xl_s1;
COMMIT;
DROP SEQUENCE xl_s1; -- error
ERROR: sequence "xl_s1" does not exist
-- Drop a sequence and recreate another sequence with the same name in the same
-- transaction. Check that transaction abort does not cause any surprising
-- behaviour
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
BEGIN;
DROP SEQUENCE xl_s1;
CREATE SEQUENCE xl_s1; -- create again with the same name
SELECT nextval('xl_s1');-- new value
nextval
---------
1
(1 row)
ROLLBACK;
SELECT nextval('xl_s1');-- sequence value changes are not transactional
nextval
---------
3
(1 row)
DROP SEQUENCE xl_s1;
-- Check sequence renaming works ok
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
SELECT nextval('xl_s1'); -- error
ERROR: relation "xl_s1" does not exist
LINE 1: SELECT nextval('xl_s1');
^
SELECT nextval('xl_s1_newname'); -- continue with the previous value-space
nextval
---------
3
(1 row)
DROP SEQUENCE xl_s1; -- error
ERROR: sequence "xl_s1" does not exist
DROP SEQUENCE xl_s1_newname; -- should be ok
-- A combination of ALTER and RENAME should work ok when transaction aborts
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RESTART;
SELECT nextval('xl_s1'); -- restart value
nextval
---------
1
(1 row)
DROP SEQUENCE xl_s1;
ROLLBACK;
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
DROP SEQUENCE xl_s1;
-- A combination of ALTER and RENAME should work ok when transacion commits
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RESTART;
SELECT nextval('xl_s1'); -- restart value
nextval
---------
1
(1 row)
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
SELECT nextval('xl_s1_newname');
nextval
---------
2
(1 row)
ALTER SEQUENCE xl_s1_newname RENAME TO xl_s1;
ALTER SEQUENCE xl_s1 RESTART;
COMMIT;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
DROP SEQUENCE xl_s1;
-- Multiple RENAMEs in the same transaction
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RESTART;
SELECT nextval('xl_s1'); -- restart value
nextval
---------
1
(1 row)
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
SELECT nextval('xl_s1_newname');
nextval
---------
2
(1 row)
ALTER SEQUENCE xl_s1_newname RENAME TO xl_s1;
ALTER SEQUENCE xl_s1 RESTART;
DROP SEQUENCE xl_s1;
COMMIT;
SELECT nextval('xl_s1');
ERROR: relation "xl_s1" does not exist
LINE 1: SELECT nextval('xl_s1');
^
DROP SEQUENCE xl_s1;
ERROR: sequence "xl_s1" does not exist
-- Multiple RENAMEs in the same transaction and the transaction aborts
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RESTART;
SELECT nextval('xl_s1'); -- restart value
nextval
---------
1
(1 row)
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
SELECT nextval('xl_s1_newname');
nextval
---------
2
(1 row)
ALTER SEQUENCE xl_s1_newname RENAME TO xl_s1;
ALTER SEQUENCE xl_s1 RESTART;
DROP SEQUENCE xl_s1;
ROLLBACK;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
DROP SEQUENCE xl_s1;
-- Rename back to original value, but abort the transaction
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
ALTER SEQUENCE xl_s1_newname RENAME TO xl_s1;
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
ROLLBACK;
SELECT nextval('xl_s1');
nextval
---------
3
(1 row)
DROP SEQUENCE xl_s1;
-- Rename back to original value
CREATE SEQUENCE xl_s1;
SELECT nextval('xl_s1');
nextval
---------
1
(1 row)
BEGIN;
ALTER SEQUENCE xl_s1 RENAME TO xl_s1_newname;
ALTER SEQUENCE xl_s1_newname RENAME TO xl_s1;
SELECT nextval('xl_s1');
nextval
---------
2
(1 row)
COMMIT;
SELECT nextval('xl_s1');
nextval
---------
3
(1 row)
CREATE TABLE xl_testtab (a serial, b int);
ALTER TABLE xl_testtab RENAME TO xl_testtab_newname;
\d+ xl_testtab_newname
Table "public.xl_testtab_newname"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
--------+---------+-----------+----------+---------------------------------------+---------+--------------+-------------
a | integer | | not null | nextval('xl_testtab_a_seq'::regclass) | plain | |
b | integer | | | | plain | |
Distribute By: HASH(a)
Location Nodes: ALL DATANODES
|