Trino completion for functions? #77
Answered
by
HaydenOrz
Samrose-Ahmed
asked this question in
Q&A
|
I see the completion suggests keywords for Trino, how can we get it to suggest built in functions like |
Answered by
HaydenOrz
Nov 20, 2023
Replies: 1 comment
|
The keyword list is derived from dt-sql-parser, and keyword list of SQL will never change. However, for functions, user can use We're considering whether to add built-in functions to the default autocomplete items, but that hasn't been done yet. Currently, you can only complete function names by customizing codeCompletion items. Please see usage doc -> |
0 replies
Answer selected by
HaydenOrz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The keyword list is derived from dt-sql-parser, and keyword list of SQL will never change.
However, for functions, user can use
create functionstatement to create them, so we don't have built-in function name codeCompletion items for the time being.We're considering whether to add built-in functions to the default autocomplete items, but that hasn't been done yet.
Currently, you can only complete function names by customizing codeCompletion items. Please see usage doc ->
Setup language features->completionService