rdettai commented on a change in pull request #1013:
URL: https://github.com/apache/arrow-datafusion/pull/1013#discussion_r710937891
##########
File path: datafusion/tests/sql.rs
##########
@@ -188,7 +188,7 @@ async fn parquet_single_nan_schema() {
let sql = "SELECT mycol FROM single_nan";
let plan = ctx.create_logical_plan(sql).unwrap();
let plan = ctx.optimize(&plan).unwrap();
- let plan = ctx.create_physical_plan(&plan).unwrap();
+ let plan = ctx.create_physical_plan(&plan).await.unwrap();
Review comment:
we see in the tests that for "regular" DataFusion users, the only API
change is the `.await` now required on `create_physical_plan`
--
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]