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
any_value
Fully reproducible code snippet sqlglot.parse_one("select any_value(c1)").sql(dialect="presto") returns
sqlglot.parse_one("select any_value(c1)").sql(dialect="presto")
SELECT ANY_VALUE(c1)
instead of
SELECT ARBITRARY(c1)
Similarly sqlglot.parse_one("select any_value(c1)").sql(dialect="spark") returns
sqlglot.parse_one("select any_value(c1)").sql(dialect="spark")
SELECT FIRST(c1)
The text was updated successfully, but these errors were encountered:
c37abfd
tobymao
No branches or pull requests
Fully reproducible code snippet
sqlglot.parse_one("select any_value(c1)").sql(dialect="presto")
returnsSELECT ANY_VALUE(c1)
instead of
SELECT ARBITRARY(c1)
Similarly
sqlglot.parse_one("select any_value(c1)").sql(dialect="spark")
returnsSELECT ANY_VALUE(c1)
instead of
SELECT FIRST(c1)
The text was updated successfully, but these errors were encountered: