tshauck opened a new issue, #11323: URL: https://github.com/apache/datafusion/issues/11323
### Is your feature request related to a problem or challenge? In working on https://github.com/apache/datafusion/pull/11229 I noticed that `SELECT COUNT(t1.*) FROM t1` doesn't work and throws a not implemented error. ``` 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 https://github.com/apache/datafusion/pull/11229 is merged. ### Describe the solution you'd like Fill out this match arm: https://github.com/apache/datafusion/blob/229c1398d6bcd4267c8f7030a4fcf7d17c096b74/datafusion/sql/src/expr/function.rs#L459 ### 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. -- 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]
