jayzhan211 commented on issue #11748: URL: https://github.com/apache/datafusion/issues/11748#issuecomment-2282966563
@Lordworms @2010YOUY01 I think the result is expected ``` statement ok create table t1(v1 int); query R SELECT AVG(v1) FROM t1 GROUP BY false having false; ---- NULL query R SELECT AVG(v1) FROM t1; ---- NULL ``` The `NULL` in DuckDB is actually not shown. -- 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]
