raghukn commented on issue #14922: URL: https://github.com/apache/pinot/issues/14922#issuecomment-2615226302
It is quite inconsistent - `select * from hs_test_tbl_v4 where id = '98765' and lead_type is null;` -- doesnot return result `select * from hs_test_tbl_v4 where id = '98765' and lead_type is not null;` -- returns result `select * from hs_test_tbl_v4 where id = '98765' and lead_type = 'null';` -- returns result `select * from hs_test_tbl_v4 where id = '98765' and lead_type != 'null';` --dosnt return result -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
