forked from orioledb/orioledb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathioc.out
422 lines (389 loc) · 15.4 KB
/
ioc.out
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
-- INSERT .. ON CONFLICT
CREATE SCHEMA ioc;
SET SESSION search_path = 'ioc';
CREATE EXTENSION orioledb;
SELECT orioledb_parallel_debug_start();
orioledb_parallel_debug_start
-------------------------------
(1 row)
---
-- easy cases
---
CREATE TABLE o_test_ioc1
(
id1 int8 NOT NULL,
id2 int8 NOT NULL,
PRIMARY KEY (id1)
) USING orioledb;
INSERT INTO o_test_ioc1 VALUES (1, 1) ON CONFLICT (id1) DO NOTHING;
INSERT INTO o_test_ioc1 VALUES (1, 2) ON CONFLICT (id1) DO NOTHING;
INSERT INTO o_test_ioc1 VALUES (1, 3) ON CONFLICT (not_exist) DO NOTHING;
ERROR: column "not_exist" does not exist
LINE 1: INSERT INTO o_test_ioc1 VALUES (1, 3) ON CONFLICT (not_exist...
^
INSERT INTO o_test_ioc1 VALUES (1, 4) ON CONFLICT DO NOTHING;
INSERT INTO o_test_ioc1 VALUES (1, 5) ON CONFLICT DO NOTHING RETURNING *;
id1 | id2
-----+-----
(0 rows)
SELECT * FROM o_test_ioc1;
id1 | id2
-----+-----
1 | 1
(1 row)
TRUNCATE o_test_ioc1;
INSERT INTO o_test_ioc1 AS t
VALUES (1, 1), (1, 2)
ON CONFLICT (id1) DO UPDATE SET id2 = t.id2 + EXCLUDED.id2;
ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
CREATE UNIQUE INDEX o_test_ioc1_uniq on o_test_ioc1(id2);
ALTER TABLE o_test_ioc1 ADD COLUMN val int;
INSERT INTO o_test_ioc1 AS t
VALUES (1, 1, 1), (2, 1, 2)
ON CONFLICT (id2) DO UPDATE SET val = t.val + EXCLUDED.val;
ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
CREATE TABLE o_test_ioc2
(
id1 int8 NOT NULL,
id2 int8 NOT NULL,
PRIMARY KEY (id1)
) USING orioledb;
INSERT INTO o_test_ioc2 VALUES (1, 1) ON CONFLICT (id1) DO NOTHING;
INSERT INTO o_test_ioc2 VALUES (1, 2) ON CONFLICT (id1) DO NOTHING;
INSERT INTO o_test_ioc2 VALUES (1, 3) ON CONFLICT (not_exist) DO NOTHING;
ERROR: column "not_exist" does not exist
LINE 1: INSERT INTO o_test_ioc2 VALUES (1, 3) ON CONFLICT (not_exist...
^
INSERT INTO o_test_ioc2 VALUES (1, 4) ON CONFLICT DO NOTHING;
INSERT INTO o_test_ioc2 VALUES (1, 5) ON CONFLICT DO NOTHING RETURNING *;
id1 | id2
-----+-----
(0 rows)
SELECT * FROM o_test_ioc2;
id1 | id2
-----+-----
1 | 1
(1 row)
CREATE TABLE o_test_ioc3
(
id1 int8 NOT NULL,
id2 int8 NOT NULL
) USING orioledb;
CREATE INDEX o_test_ioc3_reg ON o_test_ioc3 (id1);
INSERT INTO o_test_ioc3 VALUES (1, 1) ON CONFLICT (id1) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc3 VALUES (1, 2) ON CONFLICT (id1) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc3 VALUES (1, 3) ON CONFLICT (not_exist) DO NOTHING;
ERROR: column "not_exist" does not exist
LINE 1: INSERT INTO o_test_ioc3 VALUES (1, 3) ON CONFLICT (not_exist...
^
INSERT INTO o_test_ioc3 VALUES (1, 4) ON CONFLICT DO NOTHING;
INSERT INTO o_test_ioc3 VALUES (1, 5) ON CONFLICT DO NOTHING RETURNING *;
id1 | id2
-----+-----
1 | 5
(1 row)
SELECT * FROM o_test_ioc3;
id1 | id2
-----+-----
1 | 4
1 | 5
(2 rows)
---
-- conflict_target tests
---
CREATE TABLE o_test_ioc4
(
id1 int8 NOT NULL,
id2 int8 NOT NULL,
id3 int8 NOT NULL,
id4 int8 NOT NULL,
id5 int8 NOT NULL,
id6 int8 NOT NULL,
id7 int8 NOT NULL,
id8 int8 NOT NULL,
PRIMARY KEY(id4)
) USING orioledb;
CREATE UNIQUE INDEX o_test_ioc4_uniq1 on o_test_ioc4(id5);
CREATE UNIQUE INDEX o_test_ioc4_uniq2 on o_test_ioc4(id4, id5);
CREATE UNIQUE INDEX o_test_ioc4_uniq3 on o_test_ioc4(id6, id7);
CREATE INDEX o_test_ioc4_reg1 on o_test_ioc4(id3);
CREATE UNIQUE INDEX o_test_ioc4_uniq4 on o_test_ioc4(id2);
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8);
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id1) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc4 VALUES (9, 2, 9, 9, 9, 9, 9, 9) ON CONFLICT (id2) DO NOTHING;
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc4 VALUES (9, 9, 9, 4, 9, 9, 9, 9) ON CONFLICT (id4) DO NOTHING;
INSERT INTO o_test_ioc4 VALUES (9, 9, 9, 9, 5, 9, 9, 9) ON CONFLICT (id5) DO NOTHING;
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id2, id3) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3, id4) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc4 VALUES (9, 9, 9, 4, 5, 9, 9, 9) ON CONFLICT (id4, id5) DO NOTHING;
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id5, id6) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc4 VALUES (9, 9, 9, 9, 9, 6, 7, 9) ON CONFLICT (id6, id7) DO NOTHING;
INSERT INTO o_test_ioc4 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3, id4, id5) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
SELECT * FROM o_test_ioc4;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
(1 row)
CREATE TABLE o_test_ioc5
(
id1 int8 NOT NULL,
id2 int8 NOT NULL,
id3 int8 NOT NULL,
id4 int8 NOT NULL,
id5 int8 NOT NULL,
id6 int8 NOT NULL,
id7 int8 NOT NULL,
id8 int8 NOT NULL,
PRIMARY KEY(id1)
) USING orioledb;
CREATE UNIQUE INDEX o_test_ioc5_uniq1 on o_test_ioc5(id4);
CREATE UNIQUE INDEX o_test_ioc5_uniq2 on o_test_ioc5(id4);
CREATE UNIQUE INDEX o_test_ioc5_uniq3 on o_test_ioc5(id5);
CREATE UNIQUE INDEX o_test_ioc5_uniq4 on o_test_ioc5(id4, id5);
CREATE UNIQUE INDEX o_test_ioc5_uniq5 on o_test_ioc5(id6, id7);
CREATE INDEX o_test_ioc5_reg1 on o_test_ioc5(id3);
CREATE UNIQUE INDEX o_test_ioc5_uniq6 on o_test_ioc5(id2);
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8);
INSERT INTO o_test_ioc5 VALUES (1, 9, 9, 9, 9, 9, 9, 9) ON CONFLICT (id1) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (9, 2, 9, 9, 9, 9, 9, 9) ON CONFLICT (id2) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 4, 9, 9, 9, 9) ON CONFLICT (id4) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 9, 5, 9, 9, 9) ON CONFLICT (id5) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id2, id3) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3, id4) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 4, 5, 9, 9, 9) ON CONFLICT (id4, id5) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 4, 9, 9, 9, 9) ON CONFLICT (id4, id5) DO NOTHING;
ERROR: duplicate key value violates unique constraint "o_test_ioc5_uniq1"
DETAIL: Key (id4)=('4') already exists.
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 9, 5, 9, 9, 9) ON CONFLICT (id4, id5) DO NOTHING;
ERROR: duplicate key value violates unique constraint "o_test_ioc5_uniq3"
DETAIL: Key (id5)=('5') already exists.
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id5, id6) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
INSERT INTO o_test_ioc5 VALUES (9, 9, 9, 9, 9, 6, 7, 9) ON CONFLICT (id6, id7) DO NOTHING;
INSERT INTO o_test_ioc5 VALUES (1, 2, 3, 4, 5, 6, 7, 8) ON CONFLICT (id3, id4, id5) DO NOTHING;
ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
SELECT * FROM o_test_ioc5;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
(1 row)
---
-- UPDATE SET
---
CREATE TABLE o_test_ioc6
(
id1 int8 NOT NULL,
id2 int8 NOT NULL,
id3 int8 NOT NULL,
id4 int8 NOT NULL,
id5 int8 NOT NULL,
id6 int8 NOT NULL,
id7 int8 NOT NULL,
id8 int8 NOT NULL,
PRIMARY KEY(id1)
) USING orioledb;
CREATE UNIQUE INDEX o_test_ioc6_uniq1 on o_test_ioc6(id4);
CREATE UNIQUE INDEX o_test_ioc6_uniq2 on o_test_ioc6(id4);
CREATE UNIQUE INDEX o_test_ioc6_uniq3 on o_test_ioc6(id5);
CREATE UNIQUE INDEX o_test_ioc6_uniq4 on o_test_ioc6(id4, id5);
CREATE UNIQUE INDEX o_test_ioc6_uniq5 on o_test_ioc6(id6, id7);
CREATE INDEX o_test_ioc6_reg1 on o_test_ioc6(id3);
CREATE UNIQUE INDEX o_test_ioc6_uniq6 on o_test_ioc6(id2);
INSERT INTO o_test_ioc6 VALUES (1, 2, 3, 4, 5, 6, 7, 8);
INSERT INTO o_test_ioc6 VALUES (1, 9, 9, 9, 9, 9, 9, 9)
ON CONFLICT (id1) DO UPDATE SET
id1 = 10
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 2 | 3 | 4 | 5 | 6 | 7 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (9, 2, 9, 9, 9, 9, 9, 9)
ON CONFLICT (id2) DO UPDATE SET
id2 = 10
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 4 | 5 | 6 | 7 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (9, 9, 9, 4, 9, 9, 9, 9)
ON CONFLICT (id4) DO UPDATE SET
id4 = 10
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 10 | 5 | 6 | 7 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (9, 9, 9, 9, 5, 9, 9, 9)
ON CONFLICT (id5) DO UPDATE SET
id5 = 10
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 10 | 10 | 6 | 7 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (9, 9, 9, 10, 10, 9, 9, 9)
ON CONFLICT (id4, id5) DO UPDATE SET
id4 = 11, id5 = 11
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 11 | 11 | 6 | 7 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (9, 9, 9, 9, 9, 6, 7, 9)
ON CONFLICT (id6, id7) DO UPDATE SET
id6 = 10, id7 = 10
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 11 | 11 | 10 | 10 | 8
(1 row)
SELECT * FROM o_test_ioc6;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
10 | 10 | 3 | 11 | 11 | 10 | 10 | 8
(1 row)
INSERT INTO o_test_ioc6 VALUES (10, 10, 10, 10, 10, 10, 10, 10)
ON CONFLICT (id1) DO UPDATE SET
id1 = EXCLUDED.id1 - 100,
id2 = EXCLUDED.id2 - 100,
id3 = EXCLUDED.id3 - 100,
id4 = EXCLUDED.id4 - 100,
id5 = o_test_ioc6.id5 + 100,
id6 = o_test_ioc6.id6 + 100,
id7 = o_test_ioc6.id7 + 100,
id8 = o_test_ioc6.id8 + 100
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
-90 | -90 | -90 | -90 | 111 | 110 | 110 | 108
(1 row)
SELECT * FROM o_test_ioc6;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
-90 | -90 | -90 | -90 | 111 | 110 | 110 | 108
(1 row)
---
-- UPDATE SET WHERE
---
INSERT INTO o_test_ioc6 VALUES (-90, 1, 1, 1, 1, 1, 1, 1)
ON CONFLICT (id1) DO UPDATE SET
id1 = 1,
id5 = 112
WHERE o_test_ioc6.id5 <> 111
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
(0 rows)
SELECT * FROM o_test_ioc6;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
-90 | -90 | -90 | -90 | 111 | 110 | 110 | 108
(1 row)
INSERT INTO o_test_ioc6 VALUES (-90, 1, 1, 1, 1, 1, 1, 1)
ON CONFLICT (id1) DO UPDATE SET
id1 = 1,
id5 = 112
WHERE o_test_ioc6.id5 = 111
RETURNING *;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
1 | -90 | -90 | -90 | 112 | 110 | 110 | 108
(1 row)
SELECT * FROM o_test_ioc6;
id1 | id2 | id3 | id4 | id5 | id6 | id7 | id8
-----+-----+-----+-----+-----+-----+-----+-----
1 | -90 | -90 | -90 | 112 | 110 | 110 | 108
(1 row)
CREATE TABLE o_test_ioc_change_pkey (
val_1 int,
val_2 int,
PRIMARY KEY(val_1)
) USING orioledb;
INSERT INTO o_test_ioc_change_pkey VALUES (1, 2), (2, 3);
TABLE o_test_ioc_change_pkey;
val_1 | val_2
-------+-------
1 | 2
2 | 3
(2 rows)
BEGIN;
SELECT orioledb_tbl_structure('o_test_ioc_change_pkey'::regclass, 'ne');
orioledb_tbl_structure
---------------------------------------------------------------------
Index o_test_ioc_change_pkey_pkey contents +
Page 0: level = 0, maxKeyLen = 8, nVacatedBytes = 0 +
state = free, datoid equal, relnode equal, ix_type = primary, dirty+
Leftmost, Rightmost +
Chunk 0: offset = 0, location = 256, hikey location = 64 +
Item 0: offset = 264, tuple = ('1', '2') +
Item 1: offset = 288, tuple = ('2', '3') +
+
Index toast: not loaded +
(1 row)
UPDATE o_test_ioc_change_pkey SET val_1 = 13 WHERE val_1 = 1;
TABLE o_test_ioc_change_pkey;
val_1 | val_2
-------+-------
2 | 3
13 | 2
(2 rows)
SELECT orioledb_tbl_structure('o_test_ioc_change_pkey'::regclass, 'ne');
orioledb_tbl_structure
-------------------------------------------------------------------------
Index o_test_ioc_change_pkey_pkey contents +
Page 0: level = 0, maxKeyLen = 8, nVacatedBytes = 24 +
state = free, datoid equal, relnode equal, ix_type = primary, dirty +
Leftmost, Rightmost +
Chunk 0: offset = 0, location = 256, hikey location = 64 +
Item 0: mode = update, PK changed, offset = 264, tuple = ('1', '2')+
Undo item: +
Item 1: offset = 288, tuple = ('2', '3') +
Item 2: mode = update, offset = 312, tuple = ('13', '2') +
+
Index toast: not loaded +
(1 row)
INSERT INTO o_test_ioc_change_pkey VALUES (1, 15) ON CONFLICT (val_1)
DO UPDATE SET val_1 = 3 RETURNING *;
val_1 | val_2
-------+-------
1 | 15
(1 row)
COMMIT;
TABLE o_test_ioc_change_pkey;
val_1 | val_2
-------+-------
1 | 15
2 | 3
13 | 2
(3 rows)
SELECT orioledb_parallel_debug_stop();
orioledb_parallel_debug_stop
------------------------------
(1 row)
DROP EXTENSION orioledb CASCADE;
NOTICE: drop cascades to 7 other objects
DETAIL: drop cascades to table o_test_ioc1
drop cascades to table o_test_ioc2
drop cascades to table o_test_ioc3
drop cascades to table o_test_ioc4
drop cascades to table o_test_ioc5
drop cascades to table o_test_ioc6
drop cascades to table o_test_ioc_change_pkey
DROP SCHEMA ioc CASCADE;
RESET search_path;