-
Notifications
You must be signed in to change notification settings - Fork 701
#9056 Complete column names in YDB CLI #19918
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hi! Thank you for contributing! |
🟢 |
973c4d3
to
8787a5d
Compare
@pnv1, the PR is ready for a review. |
7e2f9c4
to
91a7764
Compare
0e8907d
to
a72afbf
Compare
⚪ Test history | Ya make output | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
Changelog entry
Changelog category
Description for reviewers
Complete column names in YDB CLI
Implemented
DescribeTable
using the YDB Client. Now supported onlySELECT a| FROM table_name
.SELECT | FROM table_name
is not working because of current limitations of the completion engine (it interpretsFROM
as a column name and then fails to parse a table name after from), so at least one letter of column name is required. AlsoSELECT p.a| FROM table_name AS p
is working.YQL-19747