-
Notifications
You must be signed in to change notification settings - Fork 30
PPL Language Support part 2 #772
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, just wondering about the join query suggestions in the comment below.
|
||
export const joinQuery = { | ||
query: | ||
'left outer join left = table1 right = table2 left_hint.id = leftIdent on isnull(leftIdent) = false right = table2', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is left
supposed to be suggested? when i type left
i don't get that as a suggestion, it also isn't followed by outer
as a suggestion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left that out of the suggestions cause I thought it could be confusing bundling it with the commands. But it makes sense to suggest outer and join after left/right, will add that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅
This adds language (syntax highlighting and suggestions) support for the remainder of PPL commands:
joinCommand