Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.12.0
-
None
Description
The query
SELECT COUNT(DISTINCT "the_month") FROM "foodmart" WHERE "the_month" <> 'October';
Will produce a Druid query with the following filter:
"filter":{ "type":"not", "fields":[ { "type":"selector", "dimension":"the_month", "value":"October" } ] }
But the expected filter should look like:
"filter":{ "type":"not", "field":{ "type":"selector", "dimension":"the_month", "value":"October" } }
Attachments
Issue Links
- blocks
-
CALCITE-1837 Release Calcite 1.13.0
- Closed