Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JackTan25 committed Jul 4, 2023
1 parent 45c1901 commit 3bcc456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/query/sql/src/executor/physical_plan_display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ impl<'a> Display for PhysicalPlanIndentFormatDisplay<'a> {
PhysicalPlan::ProjectSet(unnest) => write!(f, "{}", unnest)?,
PhysicalPlan::RuntimeFilterSource(plan) => write!(f, "{}", plan)?,
PhysicalPlan::RangeJoin(plan) => write!(f, "{}", plan)?,
PhysicalPlan::DistributedCopyIntoTableFromStage(copy_into_table) => {
write!(f, "{}", copy_into_table)?
PhysicalPlan::DistributedCopyIntoTableFromStage(copy_into_table_from_stage) => {
write!(f, "{}", copy_into_table_from_stage)?
}
PhysicalPlan::CopyIntoTableFromQuery(copy_into_table_from_query) => {
write!(f, "{}", copy_into_table_from_query)?
Expand Down

0 comments on commit 3bcc456

Please sign in to comment.