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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
|
<sql-statement>
--
-- UPDATE syntax tests
--
CREATE TABLE update_test (
a INT DEFAULT 10,
b INT,
c TEXT
);
</sql-statement>
<sql-statement>
CREATE TABLE upsert_test (
a INT PRIMARY KEY,
b TEXT
);
</sql-statement>
<sql-statement>
INSERT INTO update_test VALUES (5, 10, 'foo');
</sql-statement>
<sql-statement>
INSERT INTO update_test(b, a) VALUES (15, 10);
</sql-statement>
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
UPDATE update_test SET a = DEFAULT, b = DEFAULT;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 148
UPDATE update_test SET a = DEFAULT, b = DEFAULT;
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- aliases for the UPDATE target table
UPDATE update_test AS t SET b = 10 WHERE t.a = 10;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alias is not supported
-- aliases for the UPDATE target table
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
UPDATE update_test t SET b = t.b + 10 WHERE t.a = 10;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alias is not supported
UPDATE update_test t SET b = t.b + 10 WHERE t.a = 10;
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
--
-- Test VALUES in FROM
--
UPDATE update_test SET a=v.i FROM (VALUES(100, 20)) AS v(i, j)
WHERE update_test.b = v.j;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- fail, wrong data type:
UPDATE update_test SET a = v.* FROM (VALUES(100, 20)) AS v(i, j)
WHERE update_test.b = v.j;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
--
-- Test multiple-set-clause syntax
--
INSERT INTO update_test SELECT a,b+1,c FROM update_test;
</sql-statement>
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
UPDATE update_test SET (c,b,a) = ('bugle', b+11, DEFAULT) WHERE c = 'foo';
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
UPDATE update_test SET (c,b,a) = ('bugle', b+11, DEFAULT) WHERE c = 'foo';
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
UPDATE update_test SET (c,b) = ('car', a+b), a = a + 1 WHERE a = 10;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
UPDATE update_test SET (c,b) = ('car', a+b), a = a + 1 WHERE a = 10;
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- fail, multi assignment to same column:
UPDATE update_test SET (c,b) = ('car', a+b), b = a + 1 WHERE a = 10;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- fail, multi assignment to same column:
^
<sql-statement>
-- uncorrelated sub-select:
UPDATE update_test
SET (b,a) = (select a,b from update_test where b = 41 and c = 'car')
WHERE a = 100 AND b = 20;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- uncorrelated sub-select:
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- correlated sub-select:
UPDATE update_test o
SET (b,a) = (select a+1,b from update_test i
where i.a=o.a and i.b=o.b and i.c is not distinct from o.c);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- correlated sub-select:
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- fail, multiple rows supplied:
UPDATE update_test SET (b,a) = (select a+1,b from update_test);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- fail, multiple rows supplied:
^
<sql-statement>
-- set to null if no rows supplied:
UPDATE update_test SET (b,a) = (select a+1,b from update_test where a = 1000)
WHERE a = 11;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- set to null if no rows supplied:
^
<sql-statement>
SELECT * FROM update_test;
</sql-statement>
<sql-statement>
-- *-expansion should work in this context:
UPDATE update_test SET (a,b) = ROW(v.*) FROM (VALUES(21, 100)) AS v(i, j)
WHERE update_test.a = v.i;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- *-expansion should work in this context:
^
<sql-statement>
-- you might expect this to work, but syntactically it's not a RowExpr:
UPDATE update_test SET (a,b) = (v.*) FROM (VALUES(21, 101)) AS v(i, j)
WHERE update_test.a = v.i;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 363
-- you might expect this to work, but syntactically it's not a RowExpr:
^
<sql-statement>
-- if an alias for the target table is specified, don't allow references
-- to the original table name
UPDATE update_test AS t SET b = update_test.b + 10 WHERE t.a = 10;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alias is not supported
-- if an alias for the target table is specified, don't allow references
^
<sql-statement>
-- Make sure that we can update to a TOASTed value.
UPDATE update_test SET c = repeat('x', 10000) WHERE c = 'car';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT a, b, char_length(c) FROM update_test;
</sql-statement>
<sql-statement>
-- Check multi-assignment with a Result node to handle a one-time filter.
EXPLAIN (VERBOSE, COSTS OFF)
UPDATE update_test t
SET (a, b) = (SELECT b, a FROM update_test s WHERE s.a = t.a)
WHERE CURRENT_USER = SESSION_USER;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 276
-- Check multi-assignment with a Result node to handle a one-time filter.
^
<sql-statement>
UPDATE update_test t
SET (a, b) = (SELECT b, a FROM update_test s WHERE s.a = t.a)
WHERE CURRENT_USER = SESSION_USER;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:3:24: Error: Usupported SQLValueFunction: 12
WHERE CURRENT_USER = SESSION_USER;
^
<sql-statement>
SELECT a, b, char_length(c) FROM update_test;
</sql-statement>
<sql-statement>
-- Test ON CONFLICT DO UPDATE
INSERT INTO upsert_test VALUES(1, 'Boo'), (3, 'Zoo');
</sql-statement>
<sql-statement>
-- uncorrelated sub-select:
WITH aaa AS (SELECT 1 AS a, 'Foo' AS b) INSERT INTO upsert_test
VALUES (1, 'Bar') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b, a FROM aaa) RETURNING *;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- uncorrelated sub-select:
^
<sql-statement>
-- correlated sub-select:
INSERT INTO upsert_test VALUES (1, 'Baz'), (3, 'Zaz') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b || ', Correlated', a from upsert_test i WHERE i.a = upsert_test.a)
RETURNING *;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- correlated sub-select:
^
<sql-statement>
-- correlated sub-select (EXCLUDED.* alias):
INSERT INTO upsert_test VALUES (1, 'Bat'), (3, 'Zot') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b || ', Excluded', a from upsert_test i WHERE i.a = excluded.a)
RETURNING *;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- correlated sub-select (EXCLUDED.* alias):
^
<sql-statement>
-- ON CONFLICT using system attributes in RETURNING, testing both the
-- inserting and updating paths. See bug report at:
-- https://www.postgresql.org/message-id/73436355-6432-49B1-92ED-1FE4F7E7E100%40finefun.com.au
INSERT INTO upsert_test VALUES (2, 'Beeble') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b || ', Excluded', a from upsert_test i WHERE i.a = excluded.a)
RETURNING tableoid::regclass, xmin = pg_current_xact_id()::xid AS xmin_correct, xmax = 0 AS xmax_correct;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- ON CONFLICT using system attributes in RETURNING, testing both the
^
<sql-statement>
-- currently xmax is set after a conflict - that's probably not good,
-- but it seems worthwhile to have to be explicit if that changes.
INSERT INTO upsert_test VALUES (2, 'Brox') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b || ', Excluded', a from upsert_test i WHERE i.a = excluded.a)
RETURNING tableoid::regclass, xmin = pg_current_xact_id()::xid AS xmin_correct, xmax = pg_current_xact_id()::xid AS xmax_correct;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- currently xmax is set after a conflict - that's probably not good,
^
<sql-statement>
DROP TABLE update_test;
</sql-statement>
<sql-statement>
DROP TABLE upsert_test;
</sql-statement>
<sql-statement>
-- Test ON CONFLICT DO UPDATE with partitioned table and non-identical children
CREATE TABLE upsert_test (
a INT PRIMARY KEY,
b TEXT
) PARTITION BY LIST (a);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
-- Test ON CONFLICT DO UPDATE with partitioned table and non-identical children
^
<sql-statement>
CREATE TABLE upsert_test_1 PARTITION OF upsert_test FOR VALUES IN (1);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE upsert_test_1 PARTITION OF upsert_test FOR VALUES IN (1);
^
<sql-statement>
CREATE TABLE upsert_test_2 (b TEXT, a INT PRIMARY KEY);
</sql-statement>
<sql-statement>
ALTER TABLE upsert_test ATTACH PARTITION upsert_test_2 FOR VALUES IN (2);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE upsert_test ATTACH PARTITION upsert_test_2 FOR VALUES IN (2);
^
<sql-statement>
INSERT INTO upsert_test VALUES(1, 'Boo'), (2, 'Zoo');
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.upsert_test
<sql-statement>
-- uncorrelated sub-select:
WITH aaa AS (SELECT 1 AS a, 'Foo' AS b) INSERT INTO upsert_test
VALUES (1, 'Bar') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT b, a FROM aaa) RETURNING *;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- uncorrelated sub-select:
^
<sql-statement>
-- correlated sub-select:
WITH aaa AS (SELECT 1 AS ctea, ' Foo' AS cteb) INSERT INTO upsert_test
VALUES (1, 'Bar'), (2, 'Baz') ON CONFLICT(a)
DO UPDATE SET (b, a) = (SELECT upsert_test.b||cteb, upsert_test.a FROM aaa) RETURNING *;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: InsertStmt: not supported onConflictClause
-- correlated sub-select:
^
<sql-statement>
DROP TABLE upsert_test;
</sql-statement>
<sql-statement>
---------------------------
-- UPDATE with row movement
---------------------------
-- When a partitioned table receives an UPDATE to the partitioned key and the
-- new values no longer meet the partition's bound, the row must be moved to
-- the correct partition for the new partition key (if one exists). We must
-- also ensure that updatable views on partitioned tables properly enforce any
-- WITH CHECK OPTION that is defined. The situation with triggers in this case
-- also requires thorough testing as partition key updates causing row
-- movement convert UPDATEs into DELETE+INSERT.
CREATE TABLE range_parted (
a text,
b bigint,
c numeric,
d int,
e varchar
) PARTITION BY RANGE (a, b);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
---------------------------
^
<sql-statement>
-- Create partitions intentionally in descending bound order, so as to test
-- that update-row-movement works with the leaf partitions not in bound order.
CREATE TABLE part_b_20_b_30 (e varchar, c numeric, a text, b bigint, d int);
</sql-statement>
<sql-statement>
ALTER TABLE range_parted ATTACH PARTITION part_b_20_b_30 FOR VALUES FROM ('b', 20) TO ('b', 30);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE range_parted ATTACH PARTITION part_b_20_b_30 FOR VALUES FROM ('b', 20) TO ('b', 30);
^
<sql-statement>
CREATE TABLE part_b_10_b_20 (e varchar, c numeric, a text, b bigint, d int) PARTITION BY RANGE (c);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
CREATE TABLE part_b_10_b_20 (e varchar, c numeric, a text, b bigint, d int) PARTITION BY RANGE (c);
^
<sql-statement>
CREATE TABLE part_b_1_b_10 PARTITION OF range_parted FOR VALUES FROM ('b', 1) TO ('b', 10);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE part_b_1_b_10 PARTITION OF range_parted FOR VALUES FROM ('b', 1) TO ('b', 10);
^
<sql-statement>
ALTER TABLE range_parted ATTACH PARTITION part_b_10_b_20 FOR VALUES FROM ('b', 10) TO ('b', 20);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE range_parted ATTACH PARTITION part_b_10_b_20 FOR VALUES FROM ('b', 10) TO ('b', 20);
^
<sql-statement>
CREATE TABLE part_a_10_a_20 PARTITION OF range_parted FOR VALUES FROM ('a', 10) TO ('a', 20);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE part_a_10_a_20 PARTITION OF range_parted FOR VALUES FROM ('a', 10) TO ('a', 20);
^
<sql-statement>
CREATE TABLE part_a_1_a_10 PARTITION OF range_parted FOR VALUES FROM ('a', 1) TO ('a', 10);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE part_a_1_a_10 PARTITION OF range_parted FOR VALUES FROM ('a', 1) TO ('a', 10);
^
<sql-statement>
-- Check that partition-key UPDATE works sanely on a partitioned table that
-- does not have any child partitions.
UPDATE part_b_10_b_20 set b = b - 6;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- Create some more partitions following the above pattern of descending bound
-- order, but let's make the situation a bit more complex by having the
-- attribute numbers of the columns vary from their parent partition.
CREATE TABLE part_c_100_200 (e varchar, c numeric, a text, b bigint, d int) PARTITION BY range (abs(d));
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
-- Create some more partitions following the above pattern of descending bound
^
<sql-statement>
ALTER TABLE part_c_100_200 DROP COLUMN e, DROP COLUMN c, DROP COLUMN a;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_c_100_200 DROP COLUMN e, DROP COLUMN c, DROP COLUMN a;
^
<sql-statement>
ALTER TABLE part_c_100_200 ADD COLUMN c numeric, ADD COLUMN e varchar, ADD COLUMN a text;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_c_100_200 ADD COLUMN c numeric, ADD COLUMN e varchar, ADD COLUMN a text;
^
<sql-statement>
ALTER TABLE part_c_100_200 DROP COLUMN b;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_c_100_200 DROP COLUMN b;
^
<sql-statement>
ALTER TABLE part_c_100_200 ADD COLUMN b bigint;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_c_100_200 ADD COLUMN b bigint;
^
<sql-statement>
CREATE TABLE part_d_1_15 PARTITION OF part_c_100_200 FOR VALUES FROM (1) TO (15);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE part_d_1_15 PARTITION OF part_c_100_200 FOR VALUES FROM (1) TO (15);
^
<sql-statement>
CREATE TABLE part_d_15_20 PARTITION OF part_c_100_200 FOR VALUES FROM (15) TO (20);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE part_d_15_20 PARTITION OF part_c_100_200 FOR VALUES FROM (15) TO (20);
^
<sql-statement>
ALTER TABLE part_b_10_b_20 ATTACH PARTITION part_c_100_200 FOR VALUES FROM (100) TO (200);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_b_10_b_20 ATTACH PARTITION part_c_100_200 FOR VALUES FROM (100) TO (200);
^
<sql-statement>
CREATE TABLE part_c_1_100 (e varchar, d int, c numeric, b bigint, a text);
</sql-statement>
<sql-statement>
ALTER TABLE part_b_10_b_20 ATTACH PARTITION part_c_1_100 FOR VALUES FROM (1) TO (100);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE part_b_10_b_20 ATTACH PARTITION part_c_1_100 FOR VALUES FROM (1) TO (100);
^
<sql-statement>
\set init_range_parted 'truncate range_parted; insert into range_parted VALUES (''a'', 1, 1, 1), (''a'', 10, 200, 1), (''b'', 12, 96, 1), (''b'', 13, 97, 2), (''b'', 15, 105, 16), (''b'', 17, 105, 19)'
</sql-statement>
Metacommand \set init_range_parted 'truncate range_parted; insert into range_parted VALUES (''a'', 1, 1, 1), (''a'', 10, 200, 1), (''b'', 12, 96, 1), (''b'', 13, 97, 2), (''b'', 15, 105, 16), (''b'', 17, 105, 19)' is not supported
<sql-statement>
\set show_data 'select tableoid::regclass::text COLLATE "C" partname, * from range_parted ORDER BY 1, 2, 3, 4, 5, 6'
</sql-statement>
Metacommand \set show_data 'select tableoid::regclass::text COLLATE "C" partname, * from range_parted ORDER BY 1, 2, 3, 4, 5, 6' is not supported
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- The order of subplans should be in bound order
EXPLAIN (costs off) UPDATE range_parted set c = c - 50 WHERE c > 97;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 276
-- The order of subplans should be in bound order
^
<sql-statement>
-- fail, row movement happens only within the partition subtree.
UPDATE part_c_100_200 set c = c - 20, d = c WHERE c = 105;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- fail, no partition key update, so no attempt to move tuple,
-- but "a = 'a'" violates partition constraint enforced by root partition)
UPDATE part_b_10_b_20 set a = 'a';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, partition key update, no constraint violation
UPDATE range_parted set d = d - 10 WHERE d > 10;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, no partition key update, no constraint violation
UPDATE range_parted set e = d;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- No row found
UPDATE part_c_1_100 set c = c + 20 WHERE c = 98;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, row movement
UPDATE part_b_10_b_20 set c = c + 20 returning c, b, a;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- fail, row movement happens only within the partition subtree.
UPDATE part_b_10_b_20 set b = b - 6 WHERE c > 116 returning *;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, row movement, with subset of rows moved into different partition.
UPDATE range_parted set b = b - 6 WHERE c > 116 returning a, b + c;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 353
-- ok, row movement, with subset of rows moved into different partition.
^
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Common table needed for multiple test scenarios.
CREATE TABLE mintab(c1 int);
</sql-statement>
<sql-statement>
INSERT into mintab VALUES (120);
</sql-statement>
<sql-statement>
-- update partition key using updatable view.
CREATE VIEW upview AS SELECT * FROM range_parted WHERE (select c > c1 FROM mintab) WITH CHECK OPTION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: expected at least one target column
-- update partition key using updatable view.
^
<sql-statement>
-- ok
UPDATE upview set c = 199 WHERE b = 4;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- fail, check option violation
UPDATE upview set c = 120 WHERE b = 4;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- fail, row movement with check option violation
UPDATE upview set a = 'b', b = 15, c = 120 WHERE b = 4;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, row movement, check option passes
UPDATE upview set a = 'b', b = 15 WHERE b = 4;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- cleanup
DROP VIEW upview;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: View not found: 'upview'
-- cleanup
^
<sql-statement>
-- RETURNING having whole-row vars.
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:2:1: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
UPDATE range_parted set c = 95 WHERE a = 'b' and b > 10 and c > 100 returning (range_parted), *;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Transition tables with update row movement
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:2:1: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
CREATE FUNCTION trans_updatetrigfunc() RETURNS trigger LANGUAGE plpgsql AS
$$
begin
raise notice 'trigger = %, old table = %, new table = %',
TG_NAME,
(select string_agg(old_table::text, ', ' ORDER BY a) FROM old_table),
(select string_agg(new_table::text, ', ' ORDER BY a) FROM new_table);
return null;
end;
$$;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
CREATE FUNCTION trans_updatetrigfunc() RETURNS trigger LANGUAGE plpgsql AS
^
<sql-statement>
CREATE TRIGGER trans_updatetrig
AFTER UPDATE ON range_parted REFERENCING OLD TABLE AS old_table NEW TABLE AS new_table
FOR EACH STATEMENT EXECUTE PROCEDURE trans_updatetrigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trans_updatetrig
^
<sql-statement>
UPDATE range_parted set c = (case when c = 96 then 110 else c + 1 end ) WHERE a = 'b' and b > 10 and c >= 96;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
-- Enabling OLD TABLE capture for both DELETE as well as UPDATE stmt triggers
-- should not cause DELETEd rows to be captured twice. Similar thing for
-- INSERT triggers and inserted rows.
CREATE TRIGGER trans_deletetrig
AFTER DELETE ON range_parted REFERENCING OLD TABLE AS old_table
FOR EACH STATEMENT EXECUTE PROCEDURE trans_updatetrigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
-- Enabling OLD TABLE capture for both DELETE as well as UPDATE stmt triggers
^
<sql-statement>
CREATE TRIGGER trans_inserttrig
AFTER INSERT ON range_parted REFERENCING NEW TABLE AS new_table
FOR EACH STATEMENT EXECUTE PROCEDURE trans_updatetrigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trans_inserttrig
^
<sql-statement>
UPDATE range_parted set c = c + 50 WHERE a = 'b' and b > 10 and c >= 96;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
DROP TRIGGER trans_deletetrig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trans_deletetrig ON range_parted;
^
<sql-statement>
DROP TRIGGER trans_inserttrig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trans_inserttrig ON range_parted;
^
<sql-statement>
-- Don't drop trans_updatetrig yet. It is required below.
-- Test with transition tuple conversion happening for rows moved into the
-- new partition. This requires a trigger that references transition table
-- (we already have trans_updatetrig). For inserted rows, the conversion
-- is not usually needed, because the original tuple is already compatible with
-- the desired transition tuple format. But conversion happens when there is a
-- BR trigger because the trigger can change the inserted row. So install a
-- BR triggers on those child partitions where the rows will be moved.
CREATE FUNCTION func_parted_mod_b() RETURNS trigger AS $$
BEGIN
NEW.b = NEW.b + 1;
return NEW;
END $$ language plpgsql;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
-- Don't drop trans_updatetrig yet. It is required below.
^
<sql-statement>
CREATE TRIGGER trig_c1_100 BEFORE UPDATE OR INSERT ON part_c_1_100
FOR EACH ROW EXECUTE PROCEDURE func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trig_c1_100 BEFORE UPDATE OR INSERT ON part_c_1_100
^
<sql-statement>
CREATE TRIGGER trig_d1_15 BEFORE UPDATE OR INSERT ON part_d_1_15
FOR EACH ROW EXECUTE PROCEDURE func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trig_d1_15 BEFORE UPDATE OR INSERT ON part_d_1_15
^
<sql-statement>
CREATE TRIGGER trig_d15_20 BEFORE UPDATE OR INSERT ON part_d_15_20
FOR EACH ROW EXECUTE PROCEDURE func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trig_d15_20 BEFORE UPDATE OR INSERT ON part_d_15_20
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
UPDATE range_parted set c = (case when c = 96 then 110 else c + 1 end) WHERE a = 'b' and b > 10 and c >= 96;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
UPDATE range_parted set c = c + 50 WHERE a = 'b' and b > 10 and c >= 96;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Case where per-partition tuple conversion map array is allocated, but the
-- map is not required for the particular tuple that is routed, thanks to
-- matching table attributes of the partition and the target table.
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:4:1: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
UPDATE range_parted set b = 15 WHERE b = 1;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
DROP TRIGGER trans_updatetrig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trans_updatetrig ON range_parted;
^
<sql-statement>
DROP TRIGGER trig_c1_100 ON part_c_1_100;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trig_c1_100 ON part_c_1_100;
^
<sql-statement>
DROP TRIGGER trig_d1_15 ON part_d_1_15;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trig_d1_15 ON part_d_1_15;
^
<sql-statement>
DROP TRIGGER trig_d15_20 ON part_d_15_20;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trig_d15_20 ON part_d_15_20;
^
<sql-statement>
DROP FUNCTION func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: DropStmt: alternative is not implemented yet : 386
DROP FUNCTION func_parted_mod_b();
^
<sql-statement>
-- RLS policies with update-row-movement
-----------------------------------------
ALTER TABLE range_parted ENABLE ROW LEVEL SECURITY;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
-- RLS policies with update-row-movement
^
<sql-statement>
CREATE USER regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 285
CREATE USER regress_range_parted_user;
^
<sql-statement>
GRANT ALL ON range_parted, mintab TO regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 248
GRANT ALL ON range_parted, mintab TO regress_range_parted_user;
^
<sql-statement>
CREATE POLICY seeall ON range_parted AS PERMISSIVE FOR SELECT USING (true);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:42: Error: ERROR: unrecognized row security option "PERMISSIVE"
CREATE POLICY seeall ON range_parted AS PERMISSIVE FOR SELECT USING (true);
^
<sql-statement>
CREATE POLICY policy_range_parted ON range_parted for UPDATE USING (true) WITH CHECK (c % 2 = 0);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 340
CREATE POLICY policy_range_parted ON range_parted for UPDATE USING (true) WITH CHECK (c % 2 = 0);
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- This should fail with RLS violation error while moving row from
-- part_a_10_a_20 to part_d_1_15, because we are setting 'c' to an odd number.
UPDATE range_parted set a = 'b', c = 151 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
RESET SESSION AUTHORIZATION;
^
<sql-statement>
-- Create a trigger on part_d_1_15
CREATE FUNCTION func_d_1_15() RETURNS trigger AS $$
BEGIN
NEW.c = NEW.c + 1; -- Make even numbers odd, or vice versa
return NEW;
END $$ LANGUAGE plpgsql;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
-- Create a trigger on part_d_1_15
^
<sql-statement>
CREATE TRIGGER trig_d_1_15 BEFORE INSERT ON part_d_1_15
FOR EACH ROW EXECUTE PROCEDURE func_d_1_15();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trig_d_1_15 BEFORE INSERT ON part_d_1_15
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- Here, RLS checks should succeed while moving row from part_a_10_a_20 to
-- part_d_1_15. Even though the UPDATE is setting 'c' to an odd number, the
-- trigger at the destination partition again makes it an even number.
UPDATE range_parted set a = 'b', c = 151 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
RESET SESSION AUTHORIZATION;
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- This should fail with RLS violation error. Even though the UPDATE is setting
-- 'c' to an even number, the trigger at the destination partition again makes
-- it an odd number.
UPDATE range_parted set a = 'b', c = 150 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- Cleanup
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
-- Cleanup
^
<sql-statement>
DROP TRIGGER trig_d_1_15 ON part_d_1_15;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER trig_d_1_15 ON part_d_1_15;
^
<sql-statement>
DROP FUNCTION func_d_1_15();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: DropStmt: alternative is not implemented yet : 386
DROP FUNCTION func_d_1_15();
^
<sql-statement>
-- Policy expression contains SubPlan
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
-- Policy expression contains SubPlan
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
CREATE POLICY policy_range_parted_subplan on range_parted
AS RESTRICTIVE for UPDATE USING (true)
WITH CHECK ((SELECT range_parted.c <= c1 FROM mintab));
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:2:8: Error: ERROR: unrecognized row security option "RESTRICTIVE"
AS RESTRICTIVE for UPDATE USING (true)
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- fail, mintab has row with c1 = 120
UPDATE range_parted set a = 'b', c = 122 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok
UPDATE range_parted set a = 'b', c = 120 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- RLS policy expression contains whole row.
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
-- RLS policy expression contains whole row.
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
CREATE POLICY policy_range_parted_wholerow on range_parted AS RESTRICTIVE for UPDATE USING (true)
WITH CHECK (range_parted = row('b', 10, 112, 1, NULL)::range_parted);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:64: Error: ERROR: unrecognized row security option "RESTRICTIVE"
CREATE POLICY policy_range_parted_wholerow on range_parted AS RESTRICTIVE for UPDATE USING (true)
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- ok, should pass the RLS check
UPDATE range_parted set a = 'b', c = 112 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
RESET SESSION AUTHORIZATION;
^
<sql-statement>
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
SET SESSION AUTHORIZATION regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported name: session_authorization
SET SESSION AUTHORIZATION regress_range_parted_user;
^
<sql-statement>
-- fail, the whole row RLS check should fail
UPDATE range_parted set a = 'b', c = 116 WHERE a = 'a' and c = 200;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- Cleanup
RESET SESSION AUTHORIZATION;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: VariableSetStmt, not supported kind: 4
-- Cleanup
^
<sql-statement>
DROP POLICY policy_range_parted ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP POLICY policy_range_parted ON range_parted;
^
<sql-statement>
DROP POLICY policy_range_parted_subplan ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP POLICY policy_range_parted_subplan ON range_parted;
^
<sql-statement>
DROP POLICY policy_range_parted_wholerow ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP POLICY policy_range_parted_wholerow ON range_parted;
^
<sql-statement>
REVOKE ALL ON range_parted, mintab FROM regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 248
REVOKE ALL ON range_parted, mintab FROM regress_range_parted_user;
^
<sql-statement>
DROP USER regress_range_parted_user;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 287
DROP USER regress_range_parted_user;
^
<sql-statement>
DROP TABLE mintab;
</sql-statement>
<sql-statement>
-- statement triggers with update row movement
---------------------------------------------------
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:3:1: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
CREATE FUNCTION trigfunc() returns trigger language plpgsql as
$$
begin
raise notice 'trigger = % fired on table % during %',
TG_NAME, TG_TABLE_NAME, TG_OP;
return null;
end;
$$;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
CREATE FUNCTION trigfunc() returns trigger language plpgsql as
^
<sql-statement>
-- Triggers on root partition
CREATE TRIGGER parent_delete_trig
AFTER DELETE ON range_parted for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
-- Triggers on root partition
^
<sql-statement>
CREATE TRIGGER parent_update_trig
AFTER UPDATE ON range_parted for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER parent_update_trig
^
<sql-statement>
CREATE TRIGGER parent_insert_trig
AFTER INSERT ON range_parted for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER parent_insert_trig
^
<sql-statement>
-- Triggers on leaf partition part_c_1_100
CREATE TRIGGER c1_delete_trig
AFTER DELETE ON part_c_1_100 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
-- Triggers on leaf partition part_c_1_100
^
<sql-statement>
CREATE TRIGGER c1_update_trig
AFTER UPDATE ON part_c_1_100 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER c1_update_trig
^
<sql-statement>
CREATE TRIGGER c1_insert_trig
AFTER INSERT ON part_c_1_100 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER c1_insert_trig
^
<sql-statement>
-- Triggers on leaf partition part_d_1_15
CREATE TRIGGER d1_delete_trig
AFTER DELETE ON part_d_1_15 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
-- Triggers on leaf partition part_d_1_15
^
<sql-statement>
CREATE TRIGGER d1_update_trig
AFTER UPDATE ON part_d_1_15 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER d1_update_trig
^
<sql-statement>
CREATE TRIGGER d1_insert_trig
AFTER INSERT ON part_d_1_15 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER d1_insert_trig
^
<sql-statement>
-- Triggers on leaf partition part_d_15_20
CREATE TRIGGER d15_delete_trig
AFTER DELETE ON part_d_15_20 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
-- Triggers on leaf partition part_d_15_20
^
<sql-statement>
CREATE TRIGGER d15_update_trig
AFTER UPDATE ON part_d_15_20 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER d15_update_trig
^
<sql-statement>
CREATE TRIGGER d15_insert_trig
AFTER INSERT ON part_d_15_20 for each statement execute procedure trigfunc();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER d15_insert_trig
^
<sql-statement>
-- Move all rows from part_c_100_200 to part_c_1_100. None of the delete or
-- insert statement triggers should be fired.
UPDATE range_parted set c = c - 50 WHERE c > 97;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
DROP TRIGGER parent_delete_trig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER parent_delete_trig ON range_parted;
^
<sql-statement>
DROP TRIGGER parent_update_trig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER parent_update_trig ON range_parted;
^
<sql-statement>
DROP TRIGGER parent_insert_trig ON range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER parent_insert_trig ON range_parted;
^
<sql-statement>
DROP TRIGGER c1_delete_trig ON part_c_1_100;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER c1_delete_trig ON part_c_1_100;
^
<sql-statement>
DROP TRIGGER c1_update_trig ON part_c_1_100;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER c1_update_trig ON part_c_1_100;
^
<sql-statement>
DROP TRIGGER c1_insert_trig ON part_c_1_100;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER c1_insert_trig ON part_c_1_100;
^
<sql-statement>
DROP TRIGGER d1_delete_trig ON part_d_1_15;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d1_delete_trig ON part_d_1_15;
^
<sql-statement>
DROP TRIGGER d1_update_trig ON part_d_1_15;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d1_update_trig ON part_d_1_15;
^
<sql-statement>
DROP TRIGGER d1_insert_trig ON part_d_1_15;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d1_insert_trig ON part_d_1_15;
^
<sql-statement>
DROP TRIGGER d15_delete_trig ON part_d_15_20;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d15_delete_trig ON part_d_15_20;
^
<sql-statement>
DROP TRIGGER d15_update_trig ON part_d_15_20;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d15_update_trig ON part_d_15_20;
^
<sql-statement>
DROP TRIGGER d15_insert_trig ON part_d_15_20;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER d15_insert_trig ON part_d_15_20;
^
<sql-statement>
-- Creating default partition for range
:init_range_parted;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:2:1: Error: ERROR: syntax error at or near ":"
:init_range_parted;
^
<sql-statement>
create table part_def partition of range_parted default;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
create table part_def partition of range_parted default;
^
<sql-statement>
\d+ part_def
</sql-statement>
Metacommand \d+ part_def is not supported
<sql-statement>
insert into range_parted values ('c', 9);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted
<sql-statement>
-- ok
update part_def set a = 'd' where a = 'c';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- fail
update part_def set a = 'a' where a = 'd';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Update row movement from non-default to default partition.
-- fail, default partition is not under part_a_10_a_20;
UPDATE part_a_10_a_20 set a = 'ad' WHERE a = 'a';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok
UPDATE range_parted set a = 'ad' WHERE a = 'a';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
UPDATE range_parted set a = 'bd' WHERE a = 'b';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Update row movement from default to non-default partitions.
-- ok
UPDATE range_parted set a = 'a' WHERE a = 'ad';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
UPDATE range_parted set a = 'b' WHERE a = 'bd';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
:show_data;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:2: Error: ERROR: syntax error at or near ":"
:show_data;
^
<sql-statement>
-- Cleanup: range_parted no longer needed.
DROP TABLE range_parted;
</sql-statement>
<sql-statement>
CREATE TABLE list_parted (
a text,
b int
) PARTITION BY list (a);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
CREATE TABLE list_parted (
^
<sql-statement>
CREATE TABLE list_part1 PARTITION OF list_parted for VALUES in ('a', 'b');
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE list_part1 PARTITION OF list_parted for VALUES in ('a', 'b');
^
<sql-statement>
CREATE TABLE list_default PARTITION OF list_parted default;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE list_default PARTITION OF list_parted default;
^
<sql-statement>
INSERT into list_part1 VALUES ('a', 1);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_part1
<sql-statement>
INSERT into list_default VALUES ('d', 10);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_default
<sql-statement>
-- fail
UPDATE list_default set a = 'a' WHERE a = 'd';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok
UPDATE list_default set a = 'x' WHERE a = 'd';
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
DROP TABLE list_parted;
</sql-statement>
<sql-statement>
-- Test retrieval of system columns with non-consistent partition row types.
-- This is only partially supported, as seen in the results.
create table utrtest (a int, b text) partition by list (a);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
-- Test retrieval of system columns with non-consistent partition row types.
^
<sql-statement>
create table utr1 (a int check (a in (1)), q text, b text);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: column constraint not supported
create table utr1 (a int check (a in (1)), q text, b text);
^
<sql-statement>
create table utr2 (a int check (a in (2)), b text);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: column constraint not supported
create table utr2 (a int check (a in (2)), b text);
^
<sql-statement>
alter table utr1 drop column q;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
alter table utr1 drop column q;
^
<sql-statement>
alter table utrtest attach partition utr1 for values in (1);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
alter table utrtest attach partition utr1 for values in (1);
^
<sql-statement>
alter table utrtest attach partition utr2 for values in (2);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
alter table utrtest attach partition utr2 for values in (2);
^
<sql-statement>
insert into utrtest values (1, 'foo')
returning *, tableoid::regclass, xmin = pg_current_xact_id()::xid as xmin_ok;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
insert into utrtest values (1, 'foo')
^
<sql-statement>
insert into utrtest values (2, 'bar')
returning *, tableoid::regclass, xmin = pg_current_xact_id()::xid as xmin_ok; -- fails
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
insert into utrtest values (2, 'bar')
^
<sql-statement>
insert into utrtest values (2, 'bar')
returning *, tableoid::regclass;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
insert into utrtest values (2, 'bar')
^
<sql-statement>
update utrtest set b = b || b from (values (1), (2)) s(x) where a = s.x
returning *, tableoid::regclass, xmin = pg_current_xact_id()::xid as xmin_ok;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
update utrtest set b = b || b from (values (1), (2)) s(x) where a = s.x
^
<sql-statement>
update utrtest set a = 3 - a from (values (1), (2)) s(x) where a = s.x
returning *, tableoid::regclass, xmin = pg_current_xact_id()::xid as xmin_ok; -- fails
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
update utrtest set a = 3 - a from (values (1), (2)) s(x) where a = s.x
^
<sql-statement>
update utrtest set a = 3 - a from (values (1), (2)) s(x) where a = s.x
returning *, tableoid::regclass;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
update utrtest set a = 3 - a from (values (1), (2)) s(x) where a = s.x
^
<sql-statement>
delete from utrtest
returning *, tableoid::regclass, xmax = pg_current_xact_id()::xid as xmax_ok;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: ResTarget: alternative is not implemented yet : 364
delete from utrtest
^
<sql-statement>
drop table utrtest;
</sql-statement>
<sql-statement>
--------------
-- Some more update-partition-key test scenarios below. This time use list
-- partitions.
--------------
-- Setup for list partitions
CREATE TABLE list_parted (a numeric, b int, c int8) PARTITION BY list (a);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
--------------
^
<sql-statement>
CREATE TABLE sub_parted PARTITION OF list_parted for VALUES in (1) PARTITION BY list (b);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
CREATE TABLE sub_parted PARTITION OF list_parted for VALUES in (1) PARTITION BY list (b);
^
<sql-statement>
CREATE TABLE sub_part1(b int, c int8, a numeric);
</sql-statement>
<sql-statement>
ALTER TABLE sub_parted ATTACH PARTITION sub_part1 for VALUES in (1);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE sub_parted ATTACH PARTITION sub_part1 for VALUES in (1);
^
<sql-statement>
CREATE TABLE sub_part2(b int, c int8, a numeric);
</sql-statement>
<sql-statement>
ALTER TABLE sub_parted ATTACH PARTITION sub_part2 for VALUES in (2);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE sub_parted ATTACH PARTITION sub_part2 for VALUES in (2);
^
<sql-statement>
CREATE TABLE list_part1(a numeric, b int, c int8);
</sql-statement>
<sql-statement>
ALTER TABLE list_parted ATTACH PARTITION list_part1 for VALUES in (2,3);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alternative is not implemented yet : 245
ALTER TABLE list_parted ATTACH PARTITION list_part1 for VALUES in (2,3);
^
<sql-statement>
INSERT into list_parted VALUES (2,5,50);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
INSERT into list_parted VALUES (3,6,60);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
INSERT into sub_parted VALUES (1,1,60);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.sub_parted
<sql-statement>
INSERT into sub_parted VALUES (1,2,10);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.sub_parted
<sql-statement>
-- Test partition constraint violation when intermediate ancestor is used and
-- constraint is inherited from upper root.
UPDATE sub_parted set a = 2 WHERE c = 10;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- Test update-partition-key, where the unpruned partitions do not have their
-- partition keys updated.
SELECT tableoid::regclass::text, * FROM list_parted WHERE a = 2 ORDER BY 1;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
UPDATE list_parted set b = c + a WHERE a = 2;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted WHERE a = 2 ORDER BY 1;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
-- Test the case where BR UPDATE triggers change the partition key.
CREATE FUNCTION func_parted_mod_b() returns trigger as $$
BEGIN
NEW.b = 2; -- This is changing partition key column.
return NEW;
END $$ LANGUAGE plpgsql;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
-- Test the case where BR UPDATE triggers change the partition key.
^
<sql-statement>
CREATE TRIGGER parted_mod_b before update on sub_part1
for each row execute procedure func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER parted_mod_b before update on sub_part1
^
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted ORDER BY 1, 2, 3, 4;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
-- This should do the tuple routing even though there is no explicit
-- partition-key update, because there is a trigger on sub_part1.
UPDATE list_parted set c = 70 WHERE b = 1;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted ORDER BY 1, 2, 3, 4;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
DROP TRIGGER parted_mod_b ON sub_part1;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
DROP TRIGGER parted_mod_b ON sub_part1;
^
<sql-statement>
-- If BR DELETE trigger prevented DELETE from happening, we should also skip
-- the INSERT if that delete is part of UPDATE=>DELETE+INSERT.
CREATE OR REPLACE FUNCTION func_parted_mod_b() returns trigger as $$
BEGIN
raise notice 'Trigger: Got OLD row %, but returning NULL', OLD;
return NULL;
END $$ LANGUAGE plpgsql;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
-- If BR DELETE trigger prevented DELETE from happening, we should also skip
^
<sql-statement>
CREATE TRIGGER trig_skip_delete before delete on sub_part2
for each row execute procedure func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 283
CREATE TRIGGER trig_skip_delete before delete on sub_part2
^
<sql-statement>
UPDATE list_parted set b = 1 WHERE c = 70;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted ORDER BY 1, 2, 3, 4;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
-- Drop the trigger. Now the row should be moved.
DROP TRIGGER trig_skip_delete ON sub_part2;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
-- Drop the trigger. Now the row should be moved.
^
<sql-statement>
UPDATE list_parted set b = 1 WHERE c = 70;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted ORDER BY 1, 2, 3, 4;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
DROP FUNCTION func_parted_mod_b();
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: DropStmt: alternative is not implemented yet : 386
DROP FUNCTION func_parted_mod_b();
^
<sql-statement>
-- UPDATE partition-key with FROM clause. If join produces multiple output
-- rows for the same row to be modified, we should tuple-route the row only
-- once. There should not be any rows inserted.
CREATE TABLE non_parted (id int);
</sql-statement>
<sql-statement>
INSERT into non_parted VALUES (1), (1), (1), (2), (2), (2), (3), (3), (3);
</sql-statement>
<sql-statement>
UPDATE list_parted t1 set a = 2 FROM non_parted t2 WHERE t1.a = t2.id and a = 1;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: alias is not supported
UPDATE list_parted t1 set a = 2 FROM non_parted t2 WHERE t1.a = t2.id and a = 1;
^
<sql-statement>
SELECT tableoid::regclass::text, * FROM list_parted ORDER BY 1, 2, 3, 4;
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted
<sql-statement>
DROP TABLE non_parted;
</sql-statement>
<sql-statement>
-- Cleanup: list_parted no longer needed.
DROP TABLE list_parted;
</sql-statement>
<sql-statement>
-- create custom operator class and hash function, for the same reason
-- explained in alter_table.sql
create or replace function dummy_hashint4(a int4, seed int8) returns int8 as
$$ begin return (a + seed); end; $$ language 'plpgsql' immutable;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 261
-- create custom operator class and hash function, for the same reason
^
<sql-statement>
create operator class custom_opclass for type int4 using hash as
operator 1 = , function 2 dummy_hashint4(int4, int8);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: RawStmt: alternative is not implemented yet : 298
create operator class custom_opclass for type int4 using hash as
^
<sql-statement>
create table hash_parted (
a int,
b int
) partition by hash (a custom_opclass, b custom_opclass);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: PARTITION BY clause not supported
create table hash_parted (
^
<sql-statement>
create table hpart1 partition of hash_parted for values with (modulus 2, remainder 1);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
create table hpart1 partition of hash_parted for values with (modulus 2, remainder 1);
^
<sql-statement>
create table hpart2 partition of hash_parted for values with (modulus 4, remainder 2);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
create table hpart2 partition of hash_parted for values with (modulus 4, remainder 2);
^
<sql-statement>
create table hpart3 partition of hash_parted for values with (modulus 8, remainder 0);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
create table hpart3 partition of hash_parted for values with (modulus 8, remainder 0);
^
<sql-statement>
create table hpart4 partition of hash_parted for values with (modulus 8, remainder 4);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: table inheritance not supported
create table hpart4 partition of hash_parted for values with (modulus 8, remainder 4);
^
<sql-statement>
insert into hpart1 values (1, 1);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart1
<sql-statement>
insert into hpart2 values (2, 5);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart2
<sql-statement>
insert into hpart4 values (3, 4);
</sql-statement>
-stdin-:<main>: Fatal: Table metadata loading
-stdin-:<main>: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart4
<sql-statement>
-- fail
update hpart1 set a = 3, b=4 where a = 1;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok, row movement
update hash_parted set b = b - 1 where b = 1;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- ok
update hash_parted set b = b + 8 where b = 1;
</sql-statement>
-stdin-:<main>: Fatal: Pre type annotation
-stdin-:<main>: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'pg_update' not found in enum NYql::EYtSettingType. Valid options are: 'initial', 'infer_scheme', 'force_infer_schema', 'do_not_fail_on_invalid_schema', 'direct_read', 'view', 'mode', 'scheme', 'weak_concat', 'anonymous', 'with_qb', 'inline', 'sample', 'joinLabel', 'ignore_non_existing', 'warn_non_existing', 'xlock', 'unordered', 'nonUnique', 'userschema', 'usercolumns', 'statcolumns', 'syscolumns', 'ignoretypev3', 'memUsage', 'itemsCount', 'rowFactor', 'ordered', 'keyFilter', 'keyFilter2', 'take', 'skip', 'limit', 'sortLimitBy', 'sortBy', 'reduceBy', 'reduceFilterBy', 'forceTransform', 'weakFields', 'sharded', 'combineChunks', 'jobCount', 'joinReduce', 'firstAsPrimary', 'flow', 'keepSorted', 'keySwitch', 'uniqueBy', 'opHash', 'mapOutputType', 'reduceInputType', 'noDq', 'split', 'compression_codec', 'erasure_codec', 'expiration', 'replication_factor', 'user_attrs', 'media', 'primary_medium', 'keep_meta', 'monotonic_keys', 'mutationid'.
<sql-statement>
-- cleanup
drop table hash_parted;
</sql-statement>
<sql-statement>
drop operator class custom_opclass using hash;
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: Not supported object type for DROP
drop operator class custom_opclass using hash;
^
<sql-statement>
drop function dummy_hashint4(a int4, seed int8);
</sql-statement>
-stdin-:<main>: Error: Parse Sql
-stdin-:<main>:1:1: Error: DropStmt: alternative is not implemented yet : 386
drop function dummy_hashint4(a int4, seed int8);
^
|