Skip to content

Commit

Permalink
Fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Aug 6, 2024
1 parent fa38927 commit 412da6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/library/yql/sql/v1/sql_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
"<main>:1:40: Error: with: alternative is not implemented yet: 743:20: global_index\n");
"<main>:1:40: Error: with: alternative is not implemented yet: 745:20: global_index\n");
}

Y_UNIT_TEST(AlterTableAddIndexLocalIsNotSupported) {
ExpectFailWithError("USE plato; ALTER TABLE table ADD INDEX idx LOCAL ON (col)",
"<main>:1:40: Error: local: alternative is not implemented yet: 743:35: local_index\n");
"<main>:1:40: Error: local: alternative is not implemented yet: 745:35: local_index\n");
}

Y_UNIT_TEST(CreateTableAddIndexVector) {
Expand Down

0 comments on commit 412da6e

Please sign in to comment.