How to rewrite a where clause using Calcite?
Input: select * from table where col1=\'foo\' and col2=5 or col3 in (my_view.col7)
Input
select * from table where col1=\'foo\' and col2=5 or col3 in (my_view.col7)
want to r