Does connector-x support filter pushdown with polars? #298
-
Hi, My query looks something like Sample code:
I observed in the general logs table of mysql that the executed query does not contain the filter part. Am I observing something this incorrectly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That's correct. Polars optimizations are not pushed down into connector-x. Any |
Beta Was this translation helpful? Give feedback.
That's correct. Polars optimizations are not pushed down into connector-x. Any
read_<>
function in polars will be eager and will have no optimizations.scan_<>
functions do. However we don't push down to sql. That's not trivially implemented.