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
This passes with PostgreSQL but fails with ADQL translation
SELECT 0.5 + FLOOR(LOG(mass)) AS logmass, COUNT(*) AS num FROM mdr1.fof WHERE snapnum = 85 GROUP BY FLOOR(LOG(mass)) ORDER BY logmass
The text was updated successfully, but these errors were encountered:
AFAIK in ADQL, the group_by_term does not contain the math_function and therefore GROUP BY FLOOR(..) is not a valid ADQL query.
group_by_term
math_function
GROUP BY FLOOR(..)
Sorry, something went wrong.
No branches or pull requests
This passes with PostgreSQL but fails with ADQL translation
The text was updated successfully, but these errors were encountered: