diff options
author | vityaman <[email protected]> | 2025-06-02 14:31:27 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-06-02 14:57:54 +0300 |
commit | 1d7478a8215e996d0f1716c9551a70f444681405 (patch) | |
tree | 6f559319cd803da53244f76a5e38894b103d6d2a | |
parent | f8dd75681a31f8b883f1c69db243a1ded8bb8d94 (diff) |
YQL-19747: Ignore unsupported statements for YDB
- Related to `YQL-19747`
- Related to https://github.com/ydb-platform/ydb/issues/9056
- Related to https://github.com/vityaman/ydb/issues/39
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1307
commit_hash:782732c290cf2894ec466d2fbb5d0e96905f1804
-rw-r--r-- | yql/essentials/sql/v1/complete/sql_complete.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/yql/essentials/sql/v1/complete/sql_complete.cpp b/yql/essentials/sql/v1/complete/sql_complete.cpp index eb7610640a1..3fe82f63fea 100644 --- a/yql/essentials/sql/v1/complete/sql_complete.cpp +++ b/yql/essentials/sql/v1/complete/sql_complete.cpp @@ -245,7 +245,11 @@ namespace NSQLComplete { ISqlCompletionEngine::TConfiguration MakeYDBConfiguration() { return { - .IgnoredRules = {}, + .IgnoredRules = { + "use_stmt", + "import_stmt", + "export_stmt", + }, }; } |