shashanksinghal commented on issue #10525: URL: https://github.com/apache/druid/issues/10525#issuecomment-719157152
Thanks @Gahen, another possible solution I found is: instead of `select * from receiver where some_string_field is not null and some_string_field != ''` send `select * from receiver where NVL(some_string_field, 'nullVal') != 'nullVal' and some_string_field != ''` NOTE that NVL solves the issue but COALESCE does not. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
