We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ecae8f commit 5d96e52Copy full SHA for 5d96e52
datafusion/tests/sql.rs
@@ -804,7 +804,11 @@ async fn csv_query_window_with_empty_over() -> Result<()> {
804
let sql = "SELECT count(c12) over () FROM aggregate_test_100";
805
// FIXME: so far the WindowAggExec is not implemented
806
// and the current behavior is to throw not implemented exception
807
- let result = execute(&mut ctx, sql);
+
808
+ let plan = ctx.create_logical_plan(&sql)?;
809
+ let plan = ctx.optimize(&plan)?;
810
+ let plan = ctx.create_physical_plan(&plan)?;
811
+ let result = collect(plan).await;
812
assert!(result.is_err());
813
Ok(())
814
}
0 commit comments