kgyrtkirk opened a new pull request, #15044: URL: https://github.com/apache/druid/pull/15044
Literals were sometimes incorrectly quoted: ` WHERE c2 >= "b" and c2 <= "d" ORDER BY tile, c1` This patch changes those to use `'`. This was essentially created by re-copying the original queries and running: ``` find . -name '*.q'|xargs sed -r -i 's/`(.*.parquet|allData.csv)`/"\1"/g;s/;$//g' ``` There was 1-2 queries which were further modified - I've retained the existing in-repo versions for those. -- 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]
