diff --git a/ydb/library/yql/sql/v1/sql_ut.cpp b/ydb/library/yql/sql/v1/sql_ut.cpp index afa359ceb84d..0906c1b19eff 100644 --- a/ydb/library/yql/sql/v1/sql_ut.cpp +++ b/ydb/library/yql/sql/v1/sql_ut.cpp @@ -2521,12 +2521,12 @@ Y_UNIT_TEST_SUITE(SqlParsingOnly) { Y_UNIT_TEST(AlterTableAddIndexWithIsNotSupported) { ExpectFailWithError("USE plato; ALTER TABLE table ADD INDEX idx GLOBAL ON (col) WITH (a=b)", - "
:1:40: Error: with: alternative is not implemented yet: 745:20: global_index\n"); + "
:1:40: Error: with: alternative is not implemented yet: 746:20: global_index\n"); } Y_UNIT_TEST(AlterTableAddIndexLocalIsNotSupported) { ExpectFailWithError("USE plato; ALTER TABLE table ADD INDEX idx LOCAL ON (col)", - "
:1:40: Error: local: alternative is not implemented yet: 745:35: local_index\n"); + "
:1:40: Error: local: alternative is not implemented yet: 746:35: local_index\n"); } Y_UNIT_TEST(CreateTableAddIndexVector) {