-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Extend expression pushdown support #9506
Comments
@assaf2 I'm trying to implement
So I think |
Also, does this issue means we need to implement Functions like I found My solution is making a nested call for |
i think the biggest cost related to adding support for these is to define how they should be modeled, and the rest is just executing on the plan I propose
(The reason for using @martint please comment or upvote this. |
|
At
ConnectorExpressionTranslator
, support conversion of expressions suchCast
,NotExpression
,IsNullPredicate
,IsNotNullPredicate
,ArithmeticBinaryExpression
. These expressions can be represented as function calls rather than new types ofConnectorExpression
.EDIT:
GenericLiteral
,LogicalExpression
,ComparisonExpression
andCast
were implemented at #11086.The text was updated successfully, but these errors were encountered: