gianm commented on issue #13384: URL: https://github.com/apache/druid/issues/13384#issuecomment-1321467052
Instead of `mv_col = 'one_value'`, try `MV_CONTAINS(mv_col, 'one_value')`. The doc page https://druid.apache.org/docs/latest/querying/sql-data-types.html#multi-value-strings describes that when multi-value string columns are used like SQL strings, the planner may optimize in ways that do not necessarily make sense for multi-value columns. You can get correct behavior by using the multi-value string functions described on: https://druid.apache.org/docs/latest/querying/sql-multivalue-string-functions.html. -- 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]
