Skip to content

Commit f7eead2

Browse files
committed
wip: cleanup
1 parent e0724dd commit f7eead2

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

datafusion/core/src/physical_planner.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,6 @@ impl DefaultPhysicalPlanner {
13351335
Ok(plan)
13361336
}
13371337
}
1338-
// LogicalPlan::SubqueryAlias(SubqueryAlias())
13391338
LogicalPlan::RecursiveQuery(RecursiveQuery { name, static_term, recursive_term, is_distinct }) => {
13401339
let name = format!("{}-{}", name, new_recursive_cte_physical_plan_branch_number());
13411340

datafusion/sql/tests/sql_integration.rs

-22
Original file line numberDiff line numberDiff line change
@@ -1387,28 +1387,6 @@ fn select_interval_out_of_range() {
13871387
);
13881388
}
13891389

1390-
#[test]
1391-
fn select_array_no_common_type() {
1392-
let sql = "SELECT [1, true, null]";
1393-
let err = logical_plan(sql).expect_err("query should have failed");
1394-
1395-
// HashSet doesn't guarantee order
1396-
assert_contains!(
1397-
err.strip_backtrace(),
1398-
"This feature is not implemented: Arrays with different types are not supported: "
1399-
);
1400-
}
1401-
1402-
#[test]
1403-
fn select_array_non_literal_type() {
1404-
let sql = "SELECT [now()]";
1405-
let err = logical_plan(sql).expect_err("query should have failed");
1406-
assert_eq!(
1407-
"This feature is not implemented: Arrays with elements other than literal are not supported: now()",
1408-
err.strip_backtrace()
1409-
);
1410-
}
1411-
14121390
#[test]
14131391
fn select_simple_aggregate_with_groupby_and_column_is_in_aggregate_and_groupby() {
14141392
quick_test(

0 commit comments

Comments
 (0)