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
On using a CASE expression in the SELECT statement, auto-complete feature doesn’t list the columns for table_name aliases.
The user test-case here,
SELECT CASE t.SomeField WHEN 1 THEN 1 ELSE 2 END FROM table t;
SomeField
table
When I add a comma after "END", write "t." and press Ctrl+Space, the autocomplete list does not appear.
But this works fine when only table name is used with no alias.
The user ticket here >> #152455.
The text was updated successfully, but these errors were encountered:
Another user has reported a similar problem. The user report can be found in SF >> 00972562
Sorry, something went wrong.
No branches or pull requests
On using a CASE expression in the SELECT statement, auto-complete feature doesn’t list the columns for table_name aliases.
The user test-case here,
SELECT CASE t.
SomeField
WHEN 1 THEN 1 ELSE 2 ENDFROM
table
t;When I add a comma after "END", write "t." and press Ctrl+Space, the autocomplete list does not appear.
But this works fine when only table name is used with no alias.
The user ticket here >> #152455.
The text was updated successfully, but these errors were encountered: