SQL function pushdown #25583
Unanswered
ArthurBesse
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to create a custom JDBC connector, and will appreciate any help for solving the following problem.
I have the following query:
But when I execute this query my jdbc driver receives the following modified query
As you can see my driver don't receive
where
clause. This is not what I want. I need to pushdown it.Query without
LOWER
works as expectedMy JDBC driver receives
This is part of my
BaseJdbcClient
implementation:Please advice which rule(s) I need to add to
connectorExpressionRewriter
in order to enable complex expressions (likeLOWER(COLUMN_3) = 'a'
) pushdown.P.s. I'm new to trino, so I appreciate your patience and willingness to help.
Beta Was this translation helpful? Give feedback.
All reactions