Closed
Description
Hi. I am testing prestosql with mongodb connector.
I need to know if pushdown operation works on row type.
mongo table schema is below :
table : test
columns :
a, row type, row type schema : row ( varchar r_a, row r_b( varcher rr_a, int rr_b))
b, varchar type
If I try to query a select statement like
select *
from test
where b = 'a'
and a.r_a = 'b';
pushdown works well on b column, but doesn't work on a row type column.
to do this, I think It needs two functions. one is generating filter conditions on row type.
another is converting it to connector sql at connector level.
does it support pushdown on row type column?