Skip to content

Commit

Permalink
do not fail analyzer if subquery plan contains extension
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Aug 24, 2023
1 parent 2ceb7f9 commit c0b0fca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions datafusion/optimizer/src/analyzer/subquery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ fn check_inner_plan(
Ok(())
}
},
LogicalPlan::Extension(_) => Ok(()),
_ => Err(DataFusionError::Plan(
"Unsupported operator in the subquery plan.".to_string(),
)),
Expand Down

0 comments on commit c0b0fca

Please sign in to comment.