alamb commented on code in PR #5671:
URL: https://github.com/apache/arrow-datafusion/pull/5671#discussion_r1143919055
##########
datafusion/core/tests/dataframe.rs:
##########
@@ -51,16 +51,18 @@ async fn count_wildcard() -> Result<()> {
let sql_results = ctx
.sql("select count(*) from alltypes_tiny_pages")
.await?
+ .select(vec![count(Expr::Wildcard)])?
.explain(false, false)?
.collect()
.await?;
+ // add `.select(vec![count(Expr::Wildcard)])?` to make sure we can analyze
all node instead of just top node.
Review Comment:
👍
--
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]