ashwintumma23 commented on issue #17116: URL: https://github.com/apache/druid/issues/17116#issuecomment-2675654007
@Hi @carltal , Do you have any sample data for debugging this issue? I tried to generate some sample [data](https://gist.github.com/ashwintumma23/5cde2cfb39900c61ee4238a07f4ec9ba), and ran a few queries on Druid `29.0.1` and I see that the queries return correct values in all cases. Screenshots below: - `"merchant_id" = 'M101' AND "__time" >= '2023-01-01' AND "__time" < '2023-12-01'` (All records)  - `"merchant_id" = 'M101' AND "__time" >= '2023-01-01' AND "__time" < '2023-12-01' AND "payment_card_type" is not null AND "payment_card_type" <> 'AMEX'`  - `merchant_id" = 'M101' AND "__time" >= '2023-01-01' AND "__time" < '2023-12-01' AND "payment_card_type" != null AND "payment_card_type" <> 'AMEX'`  - `"merchant_id" = 'M101' AND "__time" >= '2023-01-01' AND "__time" < '2023-12-01' AND ("payment_card_type" != null OR "payment_card_type" <> 'AMEX')`  - `"merchant_id" = 'M101' AND "__time" >= '2023-01-01' AND "__time" < '2023-12-01' AND "payment_card_type" is not null`  -- 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]
