We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because of quotes in this code cannot use functions e.g. domain(sessionURL) in group by
domain(sessionURL)
infi.clickhouse_orm/src/infi/clickhouse_orm/query.py
Line 390 in ebdadb3
Resulting query fails:
SELECT domain(sessionURL) FROM `table` GROUP BY `domain(sessionURL)` ORDER BY domain(sessionURL)
With error:
Missing columns: 'domain(sessionURL)'
Dropping quotes in group by fixes the problem.
The text was updated successfully, but these errors were encountered:
Thank you for the bug report!
Sorry, something went wrong.
No branches or pull requests
Because of quotes in this code cannot use functions e.g.
domain(sessionURL)
in group byinfi.clickhouse_orm/src/infi/clickhouse_orm/query.py
Line 390 in ebdadb3
Resulting query fails:
With error:
Dropping quotes in group by fixes the problem.
The text was updated successfully, but these errors were encountered: