abhishekagarwal87 commented on issue #13182: URL: https://github.com/apache/druid/issues/13182#issuecomment-1271297915
Just to add a bit more colour here, the mode matters here because in SQL-compatible mode, the `"value" = ''` condition becomes an impossible condition for a numeric column. In non SQL-compatible mode, that is a valid condition and is translated to `"valud" = 0`. When one of the conditions is impossible, the time filter after the `AND` clause gets removed by the planner and the query becomes an `ETERNITY` query. This is when the bug fixed by Rohan can surface. -- 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]
