Description
Issue:
IN filter with date column in condition is returning 0 results when 'carbon.push.rowfilters.for.vector' is set to true.
Steps to reproduce:
sql("set carbon.push.rowfilters.for.vector=true")
sql("create table test_table(i int, dt date, ts timestamp) stored as carbondata")
sql("insert into test_table select 1, '2020-03-30', '2020-03-30 10:00:00'")
sql("insert into test_table select 2, '2020-07-04', '2020-07-04 14:12:15'")
sql("insert into test_table select 3, '2020-09-23', '2020-09-23 12:30:45'")
sql("select * from test_table where dt IN ('2020-03-30', '2020-09-23')").show()