-
Notifications
You must be signed in to change notification settings - Fork 119
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
SNOW-1852779 Fix AST encoding for Column in_
, asc
, and desc
#2756
Conversation
@@ -644,7 +644,7 @@ def in_( | |||
ast = None | |||
if _emit_ast: | |||
ast = proto.Expr() |
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 the IR server-side branch for this already merged?
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.
Yup!
@@ -557,6 +557,9 @@ body { | |||
} | |||
} | |||
} |
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.
Do we have a test for this where it is false?
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.
It can't be "false" -- it's an enum. It can only be set to true but this should be tested by the asc/desc tests.
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.
lgtm
Which Jira issue is this PR addressing? Make sure that there is an accompanying issue to your PR.
Fixes SNOW-1852779
Fill out the following pre-review checklist:
Please describe how your code solves the related issue.
Fixed AST encoding for Column
in_
,asc
, anddesc
. Removed an unused entity and renamedsp_column_in__seq
tosp_column_in
. Changed thenulls_first
optional boolean param to be an enum.