create table filter_test (account_id int, record_time date, account_user_country string, account_date date, account_time timestamp);
insert into filter_test values
(20201001, 2020-10-01, shanghai, 2020-10-01, 2020-10-01 10:10:10),
(20201005, 2020-10-05, shanghai, 2020-10-05, 2020-10-05 10:10:10),
(20201008, 2020-10-08, beijing, 2020-10-08, 2020-10-08 10:10:10);
select * from filter_timestamp where account_time in ('2020-10-01 10:10:10', '2020-10-01 10:10:11')
gluten result is empty but spark result has 1 row.
