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
In working on #11229 I noticed that SELECT COUNT(t1.*) FROM t1 doesn't work and throws a not implemented error.
SELECT COUNT(t1.*) FROM t1
Error: NotImplemented("Unsupported qualified wildcard argument: Unnamed(QualifiedWildcard(ObjectName([Ident { value: \"t1\", quote_style: None }])))")
If it is to be implemented it may make sense to wait until after #11229 is merged.
Fill out this match arm:
datafusion/datafusion/sql/src/expr/function.rs
Line 459 in 229c139
No response
This query is supported by postgres and duckdb as a cursory check, so might be nice to support it, though it's not used super often.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
In working on #11229 I noticed that
SELECT COUNT(t1.*) FROM t1
doesn't work and throws a not implemented error.If it is to be implemented it may make sense to wait until after #11229 is merged.
Describe the solution you'd like
Fill out this match arm:
datafusion/datafusion/sql/src/expr/function.rs
Line 459 in 229c139
Describe alternatives you've considered
No response
Additional context
This query is supported by postgres and duckdb as a cursory check, so might be nice to support it, though it's not used super often.
The text was updated successfully, but these errors were encountered: