-
Notifications
You must be signed in to change notification settings - Fork 449
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
feat(interactive): support isNull expression evaluation in GIE #3128
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3128 +/- ##
=======================================
Coverage 42.63% 42.63%
=======================================
Files 100 100
Lines 10817 10817
=======================================
Hits 4612 4612
Misses 6205 6205 Continue to review full report in Codecov by Sentry.
|
874c41f
to
403d771
Compare
403d771
to
a7880b2
Compare
@@ -90,6 +90,8 @@ impl TryFrom<Token> for pb::ExprOpr { | |||
} | |||
Token::IdentArray(idents) => Ok((idents_to_vars(idents)?, false).into()), | |||
Token::IdentMap(idents) => Ok((idents_to_vars(idents)?, true).into()), | |||
Token::IsNull => Ok(pb::Logical::Isnull.into()), | |||
Token::Null => Ok(pb::Value::from(pb::None {}).into()), |
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.
Token::Null
still needed?
What do these changes do?
As titled.
Related issue number
Fixes #3127