We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Starting sqlline 1.12 with --fastconnect=false
Completion on table names work, but view names cannot be completed.
The text was updated successfully, but these errors were encountered:
Checked out the source and figured out how to make VIEW completion work:
in DatabaseConnection.java (l. 281): add ,"VIEW" after "TABLE" try (ResultSet rs = getDatabaseMetaData() .getTables(getConnection().getCatalog(), null, "%", new String[] {"TABLE", "VIEW"})) {
Sorry, something went wrong.
This makes sense. I can't imagine it breaking any drivers.
I wonder whether we could leave the table types blank (null, or whatever).
No branches or pull requests
Starting sqlline 1.12 with --fastconnect=false
Completion on table names work, but view names cannot be completed.
The text was updated successfully, but these errors were encountered: