diff options
author | vityaman <[email protected]> | 2025-04-09 17:57:35 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-04-09 18:12:05 +0300 |
commit | 394fee4aa8d48e58cf82c72bcb9dda0a5dd50190 (patch) | |
tree | 48fee02cc78dd77aaf1e5e96f2c1a70bd41dfb5d /yql/essentials/sql/v1/complete/core/statement.h | |
parent | 0fd1b879589ea8263582a184ccbeac61fd38b596 (diff) |
YQL-19747 Complete select and insert hints
- Related to https://github.com/ydb-platform/ydb/issues/9056
- Related to https://github.com/vityaman/ydb/issues/19
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1189
commit_hash:7f1cb1dcf0617aa2c94c3f2188fc9bd481380252
Diffstat (limited to 'yql/essentials/sql/v1/complete/core/statement.h')
-rw-r--r-- | yql/essentials/sql/v1/complete/core/statement.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/yql/essentials/sql/v1/complete/core/statement.h b/yql/essentials/sql/v1/complete/core/statement.h new file mode 100644 index 00000000000..d4c095a0e1f --- /dev/null +++ b/yql/essentials/sql/v1/complete/core/statement.h @@ -0,0 +1,10 @@ +#pragma once + +namespace NSQLComplete { + + enum class EStatementKind { + Select, + Insert, + }; + +} // namespace NSQLComplete |