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 a02ae7d commit 1b9442bCopy full SHA for 1b9442b
datafusion/tests/sql.rs
@@ -802,12 +802,10 @@ async fn csv_query_window_with_empty_over() -> Result<()> {
802
let mut ctx = ExecutionContext::new();
803
register_aggregate_csv(&mut ctx)?;
804
let sql = "SELECT count(c12) over () FROM aggregate_test_100";
805
- let actual = execute(&mut ctx, sql).await;
806
// FIXME: so far the WindowAggExec is not implemented
807
- // and the current behavior is to return empty result
808
- // when it is done this test shall be updated
809
- let expected: Vec<Vec<String>> = vec![];
810
- assert_eq!(expected, actual);
+ // and the current behavior is to throw not implemented exception
+ let plan = ctx.create_logical_plan(&sql);
+ assert!(plan.is_err());
811
Ok(())
812
}
813
0 commit comments