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 bc2271d commit 1ecae8fCopy full SHA for 1ecae8f
datafusion/tests/sql.rs
@@ -804,8 +804,8 @@ 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 plan = ctx.create_logical_plan(&sql);
808
- assert!(plan.is_err());
+ let result = execute(&mut ctx, sql);
+ assert!(result.is_err());
809
Ok(())
810
}
811
0 commit comments