-- -- insert with DEFAULT in the target_list -- create table inserttest (col1 int4, col2 int4 NOT NULL, col3 text default 'testing'); insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT, DEFAULT); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT, DEFAULT); ^ insert into inserttest (col2, col3) values (3, DEFAULT); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (col2, col3) values (3, DEFAULT); ^ insert into inserttest (col1, col2, col3) values (DEFAULT, 5, DEFAULT); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (col1, col2, col3) values (DEFAULT, 5, DEFAULT); ^ insert into inserttest values (DEFAULT, 5, 'test'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest values (DEFAULT, 5, 'test'); ^ insert into inserttest values (DEFAULT, 7); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest values (DEFAULT, 7); ^ select * from inserttest; -- -- insert with similar expression / target_list values (all fail) -- insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 -- ^ insert into inserttest (col1, col2, col3) values (1, 2); insert into inserttest (col1) values (1, 2); -stdin-:
: Error: Type annotation -stdin-:
:1:1: Error: At function: YtWriteTable! insert into inserttest (col1) values (1, 2); ^ -stdin-:
:1:1: Error: values have 2 columns, INSERT INTO expects: 1 insert into inserttest (col1) values (1, 2); ^ insert into inserttest (col1) values (DEFAULT, DEFAULT); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (col1) values (DEFAULT, DEFAULT); ^ select * from inserttest; -- -- VALUES test -- insert into inserttest values(10, 20, '40'), (-1, 2, DEFAULT), ((select 2), (select i from (values(3)) as foo (i)), 'values are fun!'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 -- ^ select * from inserttest; -- -- TOASTed value test -- insert into inserttest values(30, 50, repeat('x', 10000)); select col1, col2, char_length(col3) from inserttest; drop table inserttest; -- -- tuple larger than fillfactor -- CREATE TABLE large_tuple_test (a int, b text) WITH (fillfactor = 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table options not supported -- ^ ALTER TABLE large_tuple_test ALTER COLUMN b SET STORAGE plain; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 ALTER TABLE large_tuple_test ALTER COLUMN b SET STORAGE plain; ^ -- create page w/ free space in range [nearlyEmptyFreeSpace, MaxHeapTupleSize) INSERT INTO large_tuple_test (select 1, NULL); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.large_tuple_test -- should still fit on the page INSERT INTO large_tuple_test (select 2, repeat('a', 1000)); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.large_tuple_test SELECT pg_size_pretty(pg_relation_size('large_tuple_test'::regclass, 'main')); -stdin-:
: Fatal: Execution -stdin-:
:1:1: Fatal: Execution of node: Result SELECT pg_size_pretty(pg_relation_size('large_tuple_test'::regclass, 'main')); ^ -stdin-:
:1:1: Fatal: ERROR: relation "large_tuple_test" does not exist SELECT pg_size_pretty(pg_relation_size('large_tuple_test'::regclass, 'main')); ^ -- add small record to the second page INSERT INTO large_tuple_test (select 3, NULL); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.large_tuple_test -- now this tuple won't fit on the second page, but the insert should -- still succeed by extending the relation INSERT INTO large_tuple_test (select 4, repeat('a', 8126)); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.large_tuple_test DROP TABLE large_tuple_test; -- -- check indirection (field/array assignment), cf bug #14265 -- -- these tests are aware that transformInsertStmt has 3 separate code paths -- create type insert_test_type as (if1 int, if2 text[]); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 314 -- ^ create table inserttest (f1 int, f2 int[], f3 insert_test_type, f4 insert_test_type[]); insert into inserttest (f2[1], f2[2]) values (1,2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f2[1], f2[2]) values (3,4), (5,6); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f2[1], f2[2]) select 7,8; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f2[1], f2[2]) values (1,default); -- not supported -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (f2[1], f2[2]) values (1,default); -- not supported ^ insert into inserttest (f3.if1, f3.if2) values (1,array['foo']); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f3.if1, f3.if2) values (1,'{foo}'), (2,'{bar}'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f3.if1, f3.if2) select 3, '{baz,quux}'; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f3.if1, f3.if2) values (1,default); -- not supported -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 148 insert into inserttest (f3.if1, f3.if2) values (1,default); -- not supported ^ insert into inserttest (f3.if2[1], f3.if2[2]) values ('foo', 'bar'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f3.if2[1], f3.if2[2]) values ('foo', 'bar'), ('baz', 'quux'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f3.if2[1], f3.if2[2]) select 'bear', 'beer'; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f4[1].if2[1], f4[1].if2[2]) values ('foo', 'bar'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f4[1].if2[1], f4[1].if2[2]) values ('foo', 'bar'), ('baz', 'quux'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest insert into inserttest (f4[1].if2[1], f4[1].if2[2]) select 'bear', 'beer'; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest select * from inserttest; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.inserttest -- also check reverse-listing create table inserttest2 (f1 bigint, f2 text); create rule irule1 as on insert to inserttest2 do also insert into inserttest (f3.if2[1], f3.if2[2]) values (new.f1,new.f2); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 265 create rule irule1 as on insert to inserttest2 do also ^ create rule irule2 as on insert to inserttest2 do also insert into inserttest (f4[1].if1, f4[1].if2[2]) values (1,'fool'),(new.f1,new.f2); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 265 create rule irule2 as on insert to inserttest2 do also ^ create rule irule3 as on insert to inserttest2 do also insert into inserttest (f4[1].if1, f4[1].if2[2]) select new.f1, new.f2; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 265 create rule irule3 as on insert to inserttest2 do also ^ \d+ inserttest2 Metacommand \d+ inserttest2 is not supported drop table inserttest2; drop table inserttest; drop type insert_test_type; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: DropStmt: alternative is not implemented yet : 373 drop type insert_test_type; ^ -- direct partition inserts should check partition bound constraint create table range_parted ( a text, b int ) partition by range (a, (b+0)); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- direct partition inserts should check partition bound constraint ^ -- no partitions, so fail insert into range_parted values ('a', 11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted create table part1 partition of range_parted for values from ('a', 1) to ('a', 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part1 partition of range_parted for values from ('a', 1) to ('a', 10); ^ create table part2 partition of range_parted for values from ('a', 10) to ('a', 20); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part2 partition of range_parted for values from ('a', 10) to ('a', 20); ^ create table part3 partition of range_parted for values from ('b', 1) to ('b', 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part3 partition of range_parted for values from ('b', 1) to ('b', 10); ^ create table part4 partition of range_parted for values from ('b', 10) to ('b', 20); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part4 partition of range_parted for values from ('b', 10) to ('b', 20); ^ -- fail insert into part1 values ('a', 11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part1 insert into part1 values ('b', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part1 -- ok insert into part1 values ('a', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part1 -- fail insert into part4 values ('b', 21); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part4 insert into part4 values ('a', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part4 -- ok insert into part4 values ('b', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part4 -- fail (partition key a has a NOT NULL constraint) insert into part1 values (null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part1 -- fail (expression key (b+0) cannot be null either) insert into part1 values (1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part1 create table list_parted ( a text, b int ) partition by list (lower(a)); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported create table list_parted ( ^ create table part_aa_bb partition of list_parted FOR VALUES IN ('aa', 'bb'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_aa_bb partition of list_parted FOR VALUES IN ('aa', 'bb'); ^ create table part_cc_dd partition of list_parted FOR VALUES IN ('cc', 'dd'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_cc_dd partition of list_parted FOR VALUES IN ('cc', 'dd'); ^ create table part_null partition of list_parted FOR VALUES IN (null); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_null partition of list_parted FOR VALUES IN (null); ^ -- fail insert into part_aa_bb values ('cc', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_aa_bb insert into part_aa_bb values ('AAa', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_aa_bb insert into part_aa_bb values (null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_aa_bb -- ok insert into part_cc_dd values ('cC', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_cc_dd insert into part_null values (null, 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_null -- check in case of multi-level partitioned table create table part_ee_ff partition of list_parted for values in ('ee', 'ff') partition by range (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- check in case of multi-level partitioned table ^ create table part_ee_ff1 partition of part_ee_ff for values from (1) to (10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_ee_ff1 partition of part_ee_ff for values from (1) to (10); ^ create table part_ee_ff2 partition of part_ee_ff for values from (10) to (20); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_ee_ff2 partition of part_ee_ff for values from (10) to (20); ^ -- test default partition create table part_default partition of list_parted default; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- test default partition ^ -- Negative test: a row, which would fit in other partition, does not fit -- default partition, even when inserted directly insert into part_default values ('aa', 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default insert into part_default values (null, 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default -- ok insert into part_default values ('Zz', 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default -- test if default partition works as expected for multi-level partitioned -- table as well as when default partition itself is further partitioned drop table part_default; create table part_xx_yy partition of list_parted for values in ('xx', 'yy') partition by list (a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_xx_yy partition of list_parted for values in ('xx', 'yy') partition by list (a); ^ create table part_xx_yy_p1 partition of part_xx_yy for values in ('xx'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_xx_yy_p1 partition of part_xx_yy for values in ('xx'); ^ create table part_xx_yy_defpart partition of part_xx_yy default; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_xx_yy_defpart partition of part_xx_yy default; ^ create table part_default partition of list_parted default partition by range(b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_default partition of list_parted default partition by range(b); ^ create table part_default_p1 partition of part_default for values from (20) to (30); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_default_p1 partition of part_default for values from (20) to (30); ^ create table part_default_p2 partition of part_default for values from (30) to (40); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_default_p2 partition of part_default for values from (30) to (40); ^ -- fail insert into part_ee_ff1 values ('EE', 11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff1 insert into part_default_p2 values ('gg', 43); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default_p2 -- fail (even the parent's, ie, part_ee_ff's partition constraint applies) insert into part_ee_ff1 values ('cc', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff1 insert into part_default values ('gg', 43); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default -- ok insert into part_ee_ff1 values ('ff', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff1 insert into part_ee_ff2 values ('ff', 11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff2 insert into part_default_p1 values ('cd', 25); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default_p1 insert into part_default_p2 values ('de', 35); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default_p2 insert into list_parted values ('ab', 21); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted values ('xx', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted values ('yy', 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted select tableoid::regclass, * from list_parted; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted -- Check tuple routing for partitioned tables -- fail insert into range_parted values ('a', 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- ok insert into range_parted values ('a', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted insert into range_parted values ('a', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- fail insert into range_parted values ('a', 20); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- ok insert into range_parted values ('b', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted insert into range_parted values ('b', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- fail (partition key (b+0) is null) insert into range_parted values ('a'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- Check default partition create table part_def partition of range_parted default; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- Check default partition ^ -- fail insert into part_def values ('b', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_def -- ok insert into part_def values ('c', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_def insert into range_parted values (null, null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted insert into range_parted values ('a', null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted insert into range_parted values (null, 19); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted insert into range_parted values ('b', 20); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted select tableoid::regclass, * from range_parted; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.range_parted -- ok insert into list_parted values (null, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted (a) values ('aA'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted -- fail (partition of part_ee_ff not found in both cases) insert into list_parted values ('EE', 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into part_ee_ff values ('EE', 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff -- ok insert into list_parted values ('EE', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into part_ee_ff values ('EE', 10); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_ee_ff select tableoid::regclass, * from list_parted; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted -- some more tests to exercise tuple-routing with multi-level partitioning create table part_gg partition of list_parted for values in ('gg') partition by range (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- some more tests to exercise tuple-routing with multi-level partitioning ^ create table part_gg1 partition of part_gg for values from (minvalue) to (1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_gg1 partition of part_gg for values from (minvalue) to (1); ^ create table part_gg2 partition of part_gg for values from (1) to (10) partition by range (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_gg2 partition of part_gg for values from (1) to (10) partition by range (b); ^ create table part_gg2_1 partition of part_gg2 for values from (1) to (5); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_gg2_1 partition of part_gg2 for values from (1) to (5); ^ create table part_gg2_2 partition of part_gg2 for values from (5) to (10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_gg2_2 partition of part_gg2 for values from (5) to (10); ^ create table part_ee_ff3 partition of part_ee_ff for values from (20) to (30) partition by range (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_ee_ff3 partition of part_ee_ff for values from (20) to (30) partition by range (b); ^ create table part_ee_ff3_1 partition of part_ee_ff3 for values from (20) to (25); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_ee_ff3_1 partition of part_ee_ff3 for values from (20) to (25); ^ create table part_ee_ff3_2 partition of part_ee_ff3 for values from (25) to (30); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_ee_ff3_2 partition of part_ee_ff3 for values from (25) to (30); ^ truncate list_parted; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 257 truncate list_parted; ^ insert into list_parted values ('aa'), ('cc'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted select 'Ff', s.a from generate_series(1, 29) s(a); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted select 'gg', s.a from generate_series(1, 9) s(a); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted insert into list_parted (b) values (1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted select tableoid::regclass::text, a, min(b) as min_b, max(b) as max_b from list_parted group by 1, 2 order by 1; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted -- direct partition inserts should check hash partition bound constraint -- Use hand-rolled hash functions and operator classes to get predictable -- result on different machines. The hash function for int4 simply returns -- the sum of the values passed to it and the one for text returns the length -- of the non-empty string value passed to it or 0. create or replace function part_hashint4_noop(value int4, seed int8) returns int8 as $$ select value + seed; $$ language sql immutable; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 -- direct partition inserts should check hash partition bound constraint ^ create operator class part_test_int4_ops for type int4 using hash as operator 1 =, function 2 part_hashint4_noop(int4, int8); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 298 create operator class part_test_int4_ops ^ create or replace function part_hashtext_length(value text, seed int8) RETURNS int8 AS $$ select length(coalesce(value, ''))::int8 $$ language sql immutable; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 create or replace function part_hashtext_length(value text, seed int8) ^ create operator class part_test_text_ops for type text using hash as operator 1 =, function 2 part_hashtext_length(text, int8); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 298 create operator class part_test_text_ops ^ create table hash_parted ( a int ) partition by hash (a part_test_int4_ops); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported create table hash_parted ( ^ create table hpart0 partition of hash_parted for values with (modulus 4, remainder 0); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table hpart0 partition of hash_parted for values with (modulus 4, remainder 0); ^ create table hpart1 partition of hash_parted for values with (modulus 4, remainder 1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table hpart1 partition of hash_parted for values with (modulus 4, remainder 1); ^ create table hpart2 partition of hash_parted for values with (modulus 4, remainder 2); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table hpart2 partition of hash_parted for values with (modulus 4, remainder 2); ^ create table hpart3 partition of hash_parted for values with (modulus 4, remainder 3); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table hpart3 partition of hash_parted for values with (modulus 4, remainder 3); ^ insert into hash_parted values(generate_series(1,10)); -stdin-:
: Error: Parse Sql -stdin-:
:1:32: Error: Generator functions are not allowed in: VALUES insert into hash_parted values(generate_series(1,10)); ^ -- direct insert of values divisible by 4 - ok; insert into hpart0 values(12),(16); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart0 -- fail; insert into hpart0 values(11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart0 -- 11 % 4 -> 3 remainder i.e. valid data for hpart3 partition insert into hpart3 values(11); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hpart3 -- view data select tableoid::regclass as part, a, a%4 as "remainder = a % 4" from hash_parted order by part; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.hash_parted -- test \d+ output on a table which has both partitioned and unpartitioned -- partitions \d+ list_parted Metacommand \d+ list_parted is not supported -- cleanup drop table range_parted, list_parted; drop table hash_parted; -- test that a default partition added as the first partition accepts any value -- including null create table list_parted (a int) partition by list (a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- test that a default partition added as the first partition accepts any value ^ create table part_default partition of list_parted default; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table part_default partition of list_parted default; ^ \d+ part_default Metacommand \d+ part_default is not supported insert into part_default values (null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default insert into part_default values (1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default insert into part_default values (-1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.part_default select tableoid::regclass, a from list_parted; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.list_parted -- cleanup drop table list_parted; -- more tests for certain multi-level partitioning scenarios create table mlparted (a int, b int) partition by range (a, b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- more tests for certain multi-level partitioning scenarios ^ create table mlparted1 (b int not null, a int not null) partition by range ((b+0)); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported create table mlparted1 (b int not null, a int not null) partition by range ((b+0)); ^ create table mlparted11 (like mlparted1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: CreateStmt: alternative is not implemented yet : 389 create table mlparted11 (like mlparted1); ^ alter table mlparted11 drop a; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted11 drop a; ^ alter table mlparted11 add a int; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted11 add a int; ^ alter table mlparted11 drop a; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted11 drop a; ^ alter table mlparted11 add a int not null; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted11 add a int not null; ^ -- attnum for key attribute 'a' is different in mlparted, mlparted1, and mlparted11 select attrelid::regclass, attname, attnum from pg_attribute where attname = 'a' and (attrelid = 'mlparted'::regclass or attrelid = 'mlparted1'::regclass or attrelid = 'mlparted11'::regclass) order by attrelid::regclass::text; alter table mlparted1 attach partition mlparted11 for values from (2) to (5); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted1 attach partition mlparted11 for values from (2) to (5); ^ alter table mlparted attach partition mlparted1 for values from (1, 2) to (1, 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted attach partition mlparted1 for values from (1, 2) to (1, 10); ^ -- check that "(1, 2)" is correctly routed to mlparted11. insert into mlparted values (1, 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted select tableoid::regclass, * from mlparted; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted -- check that proper message is shown after failure to route through mlparted1 insert into mlparted (a, b) values (1, 5); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted truncate mlparted; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 257 truncate mlparted; ^ alter table mlparted add constraint check_b check (b = 3); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted add constraint check_b check (b = 3); ^ -- have a BR trigger modify the row such that the check_b is violated create function mlparted11_trig_fn() returns trigger AS $$ begin NEW.b := 4; return NEW; end; $$ language plpgsql; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 -- have a BR trigger modify the row such that the check_b is violated ^ create trigger mlparted11_trig before insert ON mlparted11 for each row execute procedure mlparted11_trig_fn(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 283 create trigger mlparted11_trig before insert ON mlparted11 ^ -- check that the correct row is shown when constraint check_b fails after -- "(1, 2)" is routed to mlparted11 (actually "(1, 4)" would be shown due -- to the BR trigger mlparted11_trig_fn) insert into mlparted values (1, 2); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted drop trigger mlparted11_trig on mlparted11; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: Not supported object type for DROP drop trigger mlparted11_trig on mlparted11; ^ drop function mlparted11_trig_fn(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: DropStmt: alternative is not implemented yet : 386 drop function mlparted11_trig_fn(); ^ -- check that inserting into an internal partition successfully results in -- checking its partition constraint before inserting into the leaf partition -- selected by tuple-routing insert into mlparted1 (a, b) values (2, 3); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted1 -- check routing error through a list partitioned table when the key is null create table lparted_nonullpart (a int, b char) partition by list (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check routing error through a list partitioned table when the key is null ^ create table lparted_nonullpart_a partition of lparted_nonullpart for values in ('a'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table lparted_nonullpart_a partition of lparted_nonullpart for values in ('a'); ^ insert into lparted_nonullpart values (1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.lparted_nonullpart drop table lparted_nonullpart; -- check that RETURNING works correctly with tuple-routing alter table mlparted drop constraint check_b; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 -- check that RETURNING works correctly with tuple-routing ^ create table mlparted12 partition of mlparted1 for values from (5) to (10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted12 partition of mlparted1 for values from (5) to (10); ^ create table mlparted2 (b int not null, a int not null); alter table mlparted attach partition mlparted2 for values from (1, 10) to (1, 20); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted attach partition mlparted2 for values from (1, 10) to (1, 20); ^ create table mlparted3 partition of mlparted for values from (1, 20) to (1, 30); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted3 partition of mlparted for values from (1, 20) to (1, 30); ^ create table mlparted4 (like mlparted); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: CreateStmt: alternative is not implemented yet : 389 create table mlparted4 (like mlparted); ^ alter table mlparted4 drop a; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted4 drop a; ^ alter table mlparted4 add a int not null; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted4 add a int not null; ^ alter table mlparted attach partition mlparted4 for values from (1, 30) to (1, 40); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted attach partition mlparted4 for values from (1, 30) to (1, 40); ^ with ins (a, b, c) as (insert into mlparted (b, a) select s.a, 1 from generate_series(2, 39) s(a) returning tableoid::regclass, *) select a, b, min(c), max(c) from ins group by a, b order by 1; -stdin-:
: Error: Parse Sql -stdin-:
:1:6: Error: Expected Select statement as CTE query with ins (a, b, c) as ^ alter table mlparted add c text; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted add c text; ^ create table mlparted5 (c text, a int not null, b int not null) partition by list (c); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported create table mlparted5 (c text, a int not null, b int not null) partition by list (c); ^ create table mlparted5a (a int not null, c text, b int not null); alter table mlparted5 attach partition mlparted5a for values in ('a'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted5 attach partition mlparted5a for values in ('a'); ^ alter table mlparted attach partition mlparted5 for values from (1, 40) to (1, 50); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted attach partition mlparted5 for values from (1, 40) to (1, 50); ^ alter table mlparted add constraint check_b check (a = 1 and b < 45); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted add constraint check_b check (a = 1 and b < 45); ^ insert into mlparted values (1, 45, 'a'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted create function mlparted5abrtrig_func() returns trigger as $$ begin new.c = 'b'; return new; end; $$ language plpgsql; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 create function mlparted5abrtrig_func() returns trigger as $$ begin new.c = 'b'; return new; end; $$ language plpgsql; ^ create trigger mlparted5abrtrig before insert on mlparted5a for each row execute procedure mlparted5abrtrig_func(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 283 create trigger mlparted5abrtrig before insert on mlparted5a for each row execute procedure mlparted5abrtrig_func(); ^ insert into mlparted5 (a, b, c) values (1, 40, 'a'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted5 drop table mlparted5; alter table mlparted drop constraint check_b; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted drop constraint check_b; ^ -- Check multi-level default partition create table mlparted_def partition of mlparted default partition by range(a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- Check multi-level default partition ^ create table mlparted_def1 partition of mlparted_def for values from (40) to (50); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted_def1 partition of mlparted_def for values from (40) to (50); ^ create table mlparted_def2 partition of mlparted_def for values from (50) to (60); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted_def2 partition of mlparted_def for values from (50) to (60); ^ insert into mlparted values (40, 100); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted_def1 values (42, 100); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted_def1 insert into mlparted_def2 values (54, 50); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted_def2 -- fail insert into mlparted values (70, 100); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted_def1 values (52, 50); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted_def1 insert into mlparted_def2 values (34, 50); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted_def2 -- ok create table mlparted_defd partition of mlparted_def default; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- ok ^ insert into mlparted values (70, 100); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted select tableoid::regclass, * from mlparted_def; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted_def -- Check multi-level tuple routing with attributes dropped from the -- top-most parent. First remove the last attribute. alter table mlparted add d int, add e int; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 -- Check multi-level tuple routing with attributes dropped from the ^ alter table mlparted drop e; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted drop e; ^ create table mlparted5 partition of mlparted for values from (1, 40) to (1, 50) partition by range (c); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted5 partition of mlparted ^ create table mlparted5_ab partition of mlparted5 for values from ('a') to ('c') partition by list (c); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted5_ab partition of mlparted5 ^ -- This partitioned table should remain with no partitions. create table mlparted5_cd partition of mlparted5 for values from ('c') to ('e') partition by list (c); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- This partitioned table should remain with no partitions. ^ create table mlparted5_a partition of mlparted5_ab for values in ('a'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mlparted5_a partition of mlparted5_ab for values in ('a'); ^ create table mlparted5_b (d int, b int, c text, a int); alter table mlparted5_ab attach partition mlparted5_b for values in ('b'); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted5_ab attach partition mlparted5_b for values in ('b'); ^ truncate mlparted; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 257 truncate mlparted; ^ insert into mlparted values (1, 2, 'a', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 40, 'a', 1); -- goes to mlparted5_a -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'b', 1); -- goes to mlparted5_b -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'c', 1); -- goes to mlparted5_cd, fails -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'f', 1); -- goes to mlparted5, fails -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted select tableoid::regclass, * from mlparted order by a, b, c, d; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted alter table mlparted drop d; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted drop d; ^ truncate mlparted; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 257 truncate mlparted; ^ -- Remove the before last attribute. alter table mlparted add e int, add d int; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 -- Remove the before last attribute. ^ alter table mlparted drop e; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted drop e; ^ insert into mlparted values (1, 2, 'a', 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 40, 'a', 1); -- goes to mlparted5_a -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'b', 1); -- goes to mlparted5_b -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'c', 1); -- goes to mlparted5_cd, fails -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted insert into mlparted values (1, 45, 'f', 1); -- goes to mlparted5, fails -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted select tableoid::regclass, * from mlparted order by a, b, c, d; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mlparted alter table mlparted drop d; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table mlparted drop d; ^ drop table mlparted5; -- check that message shown after failure to find a partition shows the -- appropriate key description (or none) in various situations create table key_desc (a int, b int) partition by list ((a+0)); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check that message shown after failure to find a partition shows the ^ create table key_desc_1 partition of key_desc for values in (1) partition by range (b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table key_desc_1 partition of key_desc for values in (1) partition by range (b); ^ create user regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 285 create user regress_insert_other_user; ^ grant select (a) on key_desc_1 to regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 grant select (a) on key_desc_1 to regress_insert_other_user; ^ grant insert on key_desc to regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 grant insert on key_desc to regress_insert_other_user; ^ set role regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported name: role set role regress_insert_other_user; ^ -- no key description is shown insert into key_desc values (1, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.key_desc reset role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported kind: 4 reset role; ^ grant select (b) on key_desc_1 to regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 grant select (b) on key_desc_1 to regress_insert_other_user; ^ set role regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported name: role set role regress_insert_other_user; ^ -- key description (b)=(1) is now shown insert into key_desc values (1, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.key_desc -- key description is not shown if key contains expression insert into key_desc values (2, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.key_desc reset role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported kind: 4 reset role; ^ revoke all on key_desc from regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 revoke all on key_desc from regress_insert_other_user; ^ revoke all on key_desc_1 from regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 revoke all on key_desc_1 from regress_insert_other_user; ^ drop role regress_insert_other_user; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 287 drop role regress_insert_other_user; ^ drop table key_desc, key_desc_1; -- test minvalue/maxvalue restrictions create table mcrparted (a int, b int, c int) partition by range (a, abs(b), c); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- test minvalue/maxvalue restrictions ^ create table mcrparted0 partition of mcrparted for values from (minvalue, 0, 0) to (1, maxvalue, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted0 partition of mcrparted for values from (minvalue, 0, 0) to (1, maxvalue, maxvalue); ^ create table mcrparted2 partition of mcrparted for values from (10, 6, minvalue) to (10, maxvalue, minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted2 partition of mcrparted for values from (10, 6, minvalue) to (10, maxvalue, minvalue); ^ create table mcrparted4 partition of mcrparted for values from (21, minvalue, 0) to (30, 20, minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted4 partition of mcrparted for values from (21, minvalue, 0) to (30, 20, minvalue); ^ -- check multi-column range partitioning expression enforces the same -- constraint as what tuple-routing would determine it to be create table mcrparted0 partition of mcrparted for values from (minvalue, minvalue, minvalue) to (1, maxvalue, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported -- check multi-column range partitioning expression enforces the same ^ create table mcrparted1 partition of mcrparted for values from (2, 1, minvalue) to (10, 5, 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted1 partition of mcrparted for values from (2, 1, minvalue) to (10, 5, 10); ^ create table mcrparted2 partition of mcrparted for values from (10, 6, minvalue) to (10, maxvalue, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted2 partition of mcrparted for values from (10, 6, minvalue) to (10, maxvalue, maxvalue); ^ create table mcrparted3 partition of mcrparted for values from (11, 1, 1) to (20, 10, 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted3 partition of mcrparted for values from (11, 1, 1) to (20, 10, 10); ^ create table mcrparted4 partition of mcrparted for values from (21, minvalue, minvalue) to (30, 20, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted4 partition of mcrparted for values from (21, minvalue, minvalue) to (30, 20, maxvalue); ^ create table mcrparted5 partition of mcrparted for values from (30, 21, 20) to (maxvalue, maxvalue, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted5 partition of mcrparted for values from (30, 21, 20) to (maxvalue, maxvalue, maxvalue); ^ -- null not allowed in range partition insert into mcrparted values (null, null, null); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted -- routed to mcrparted0 insert into mcrparted values (0, 1, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted0 values (0, 1, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted0 -- routed to mcparted1 insert into mcrparted values (9, 1000, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted1 values (9, 1000, 1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted1 insert into mcrparted values (10, 5, -1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted1 values (10, 5, -1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted1 insert into mcrparted values (2, 1, 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted1 values (2, 1, 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted1 -- routed to mcparted2 insert into mcrparted values (10, 6, 1000); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted2 values (10, 6, 1000); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted2 insert into mcrparted values (10, 1000, 1000); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted2 values (10, 1000, 1000); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted2 -- no partition exists, nor does mcrparted3 accept it insert into mcrparted values (11, 1, -1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted3 values (11, 1, -1); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted3 -- routed to mcrparted5 insert into mcrparted values (30, 21, 20); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted insert into mcrparted5 values (30, 21, 20); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted5 insert into mcrparted4 values (30, 21, 20); -- error -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted4 -- check rows select tableoid::regclass::text, * from mcrparted order by 1; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted -- cleanup drop table mcrparted; -- check that a BR constraint can't make partition contain violating rows create table brtrigpartcon (a int, b text) partition by list (a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check that a BR constraint can't make partition contain violating rows ^ create table brtrigpartcon1 partition of brtrigpartcon for values in (1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table brtrigpartcon1 partition of brtrigpartcon for values in (1); ^ create or replace function brtrigpartcon1trigf() returns trigger as $$begin new.a := 2; return new; end$$ language plpgsql; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 create or replace function brtrigpartcon1trigf() returns trigger as $$begin new.a := 2; return new; end$$ language plpgsql; ^ create trigger brtrigpartcon1trig before insert on brtrigpartcon1 for each row execute procedure brtrigpartcon1trigf(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 283 create trigger brtrigpartcon1trig before insert on brtrigpartcon1 for each row execute procedure brtrigpartcon1trigf(); ^ insert into brtrigpartcon values (1, 'hi there'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.brtrigpartcon insert into brtrigpartcon1 values (1, 'hi there'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.brtrigpartcon1 -- check that the message shows the appropriate column description in a -- situation where the partitioned table is not the primary ModifyTable node create table inserttest3 (f1 text default 'foo', f2 text default 'bar', f3 int); create role regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 285 create role regress_coldesc_role; ^ grant insert on inserttest3 to regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 grant insert on inserttest3 to regress_coldesc_role; ^ grant insert on brtrigpartcon to regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 grant insert on brtrigpartcon to regress_coldesc_role; ^ revoke select on brtrigpartcon from regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 revoke select on brtrigpartcon from regress_coldesc_role; ^ set role regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported name: role set role regress_coldesc_role; ^ with result as (insert into brtrigpartcon values (1, 'hi there') returning 1) insert into inserttest3 (f3) select * from result; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: InsertStmt: not supported withClause with result as (insert into brtrigpartcon values (1, 'hi there') returning 1) ^ reset role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: VariableSetStmt, not supported kind: 4 reset role; ^ -- cleanup revoke all on inserttest3 from regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 -- cleanup ^ revoke all on brtrigpartcon from regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 248 revoke all on brtrigpartcon from regress_coldesc_role; ^ drop role regress_coldesc_role; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 287 drop role regress_coldesc_role; ^ drop table inserttest3; drop table brtrigpartcon; drop function brtrigpartcon1trigf(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: DropStmt: alternative is not implemented yet : 386 drop function brtrigpartcon1trigf(); ^ -- check that "do nothing" BR triggers work with tuple-routing create table donothingbrtrig_test (a int, b text) partition by list (a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check that "do nothing" BR triggers work with tuple-routing ^ create table donothingbrtrig_test1 (b text, a int); create table donothingbrtrig_test2 (c text, b text, a int); alter table donothingbrtrig_test2 drop column c; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table donothingbrtrig_test2 drop column c; ^ create or replace function donothingbrtrig_func() returns trigger as $$begin raise notice 'b: %', new.b; return NULL; end$$ language plpgsql; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 261 create or replace function donothingbrtrig_func() returns trigger as $$begin raise notice 'b: %', new.b; return NULL; end$$ language plpgsql; ^ create trigger donothingbrtrig1 before insert on donothingbrtrig_test1 for each row execute procedure donothingbrtrig_func(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 283 create trigger donothingbrtrig1 before insert on donothingbrtrig_test1 for each row execute procedure donothingbrtrig_func(); ^ create trigger donothingbrtrig2 before insert on donothingbrtrig_test2 for each row execute procedure donothingbrtrig_func(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: RawStmt: alternative is not implemented yet : 283 create trigger donothingbrtrig2 before insert on donothingbrtrig_test2 for each row execute procedure donothingbrtrig_func(); ^ alter table donothingbrtrig_test attach partition donothingbrtrig_test1 for values in (1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table donothingbrtrig_test attach partition donothingbrtrig_test1 for values in (1); ^ alter table donothingbrtrig_test attach partition donothingbrtrig_test2 for values in (2); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table donothingbrtrig_test attach partition donothingbrtrig_test2 for values in (2); ^ insert into donothingbrtrig_test values (1, 'foo'), (2, 'bar'); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.donothingbrtrig_test copy donothingbrtrig_test from stdout; 1 baz 2 qux \. Metacommand \. is not supported select tableoid::regclass, * from donothingbrtrig_test; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.donothingbrtrig_test -- cleanup drop table donothingbrtrig_test; drop function donothingbrtrig_func(); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: DropStmt: alternative is not implemented yet : 386 drop function donothingbrtrig_func(); ^ -- check multi-column range partitioning with minvalue/maxvalue constraints create table mcrparted (a text, b int) partition by range(a, b); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check multi-column range partitioning with minvalue/maxvalue constraints ^ create table mcrparted1_lt_b partition of mcrparted for values from (minvalue, minvalue) to ('b', minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted1_lt_b partition of mcrparted for values from (minvalue, minvalue) to ('b', minvalue); ^ create table mcrparted2_b partition of mcrparted for values from ('b', minvalue) to ('c', minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted2_b partition of mcrparted for values from ('b', minvalue) to ('c', minvalue); ^ create table mcrparted3_c_to_common partition of mcrparted for values from ('c', minvalue) to ('common', minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted3_c_to_common partition of mcrparted for values from ('c', minvalue) to ('common', minvalue); ^ create table mcrparted4_common_lt_0 partition of mcrparted for values from ('common', minvalue) to ('common', 0); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted4_common_lt_0 partition of mcrparted for values from ('common', minvalue) to ('common', 0); ^ create table mcrparted5_common_0_to_10 partition of mcrparted for values from ('common', 0) to ('common', 10); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted5_common_0_to_10 partition of mcrparted for values from ('common', 0) to ('common', 10); ^ create table mcrparted6_common_ge_10 partition of mcrparted for values from ('common', 10) to ('common', maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted6_common_ge_10 partition of mcrparted for values from ('common', 10) to ('common', maxvalue); ^ create table mcrparted7_gt_common_lt_d partition of mcrparted for values from ('common', maxvalue) to ('d', minvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted7_gt_common_lt_d partition of mcrparted for values from ('common', maxvalue) to ('d', minvalue); ^ create table mcrparted8_ge_d partition of mcrparted for values from ('d', minvalue) to (maxvalue, maxvalue); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table mcrparted8_ge_d partition of mcrparted for values from ('d', minvalue) to (maxvalue, maxvalue); ^ \d+ mcrparted Metacommand \d+ mcrparted is not supported \d+ mcrparted1_lt_b Metacommand \d+ mcrparted1_lt_b is not supported \d+ mcrparted2_b Metacommand \d+ mcrparted2_b is not supported \d+ mcrparted3_c_to_common Metacommand \d+ mcrparted3_c_to_common is not supported \d+ mcrparted4_common_lt_0 Metacommand \d+ mcrparted4_common_lt_0 is not supported \d+ mcrparted5_common_0_to_10 Metacommand \d+ mcrparted5_common_0_to_10 is not supported \d+ mcrparted6_common_ge_10 Metacommand \d+ mcrparted6_common_ge_10 is not supported \d+ mcrparted7_gt_common_lt_d Metacommand \d+ mcrparted7_gt_common_lt_d is not supported \d+ mcrparted8_ge_d Metacommand \d+ mcrparted8_ge_d is not supported insert into mcrparted values ('aaa', 0), ('b', 0), ('bz', 10), ('c', -10), ('comm', -10), ('common', -10), ('common', 0), ('common', 10), ('commons', 0), ('d', -10), ('e', 0); -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted select tableoid::regclass, * from mcrparted order by a, b; -stdin-:
: Fatal: Table metadata loading -stdin-:
: Fatal: ydb/library/yql/providers/yt/gateway/file/yql_yt_file_services.cpp:44: Table not found: plato.mcrparted drop table mcrparted; -- check that wholerow vars in the RETURNING list work with partitioned tables create table returningwrtest (a int) partition by list (a); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: PARTITION BY clause not supported -- check that wholerow vars in the RETURNING list work with partitioned tables ^ create table returningwrtest1 partition of returningwrtest for values in (1); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: table inheritance not supported create table returningwrtest1 partition of returningwrtest for values in (1); ^ insert into returningwrtest values (1) returning returningwrtest; -stdin-:
: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'returning' 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'. -- check also that the wholerow vars in RETURNING list are converted as needed alter table returningwrtest add b text; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 -- check also that the wholerow vars in RETURNING list are converted as needed ^ create table returningwrtest2 (b text, c int, a int); alter table returningwrtest2 drop c; -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table returningwrtest2 drop c; ^ alter table returningwrtest attach partition returningwrtest2 for values in (2); -stdin-:
: Error: Parse Sql -stdin-:
:1:1: Error: alternative is not implemented yet : 245 alter table returningwrtest attach partition returningwrtest2 for values in (2); ^ insert into returningwrtest values (2, 'foo') returning returningwrtest; -stdin-:
: Fatal: tools/enum_parser/enum_serialization_runtime/enum_runtime.cpp:70: Key 'returning' 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'. drop table returningwrtest;