suhassumukh commented on issue #11813:
URL: https://github.com/apache/druid/issues/11813#issuecomment-985999840
@kfaraz
After rewriting my query to -
```sql
select * from foo where dim is not null and dim <> 'a'
```
The query plan is still -
```json
"filter": {
"type": "not",
"field": {
"type": "selector",
"dimension": "dim",
"value": "a",
"extractionFn": null
}
}
```
Replacing `<>` with `!=` doesn't change anything either.
--
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]