We support function pushdown from #7727.
In our benchmarks, we also have prefix/starts_with and suffix/ends_with.
We should push down these functions as well. For that we need to implement Vortex's prefix/suffix/substring expressions.
Our contains() function is pushed down as %pattern% (LIKE) which has bad performance. We should have a separate expression for that as well.
We support function pushdown from #7727.
In our benchmarks, we also have prefix/starts_with and suffix/ends_with.
We should push down these functions as well. For that we need to implement Vortex's prefix/suffix/substring expressions.
Our contains() function is pushed down as %pattern% (LIKE) which has bad performance. We should have a separate expression for that as well.