@@ -21,8 +21,7 @@ use std::sync::Arc;
2121
2222use crate :: protobuf:: logical_plan_node:: LogicalPlanType :: CustomScan ;
2323use crate :: protobuf:: {
24- dml_node, ColumnUnnestListItem , ColumnUnnestListRecursion , CteWorkTableScanNode ,
25- CustomTableScanNode , DmlNode , SortExprNodeCollection ,
24+ dml_node, CteWorkTableScanNode , CustomTableScanNode , DmlNode , SortExprNodeCollection ,
2625} ;
2726use crate :: {
2827 convert_required, into_required,
@@ -66,9 +65,9 @@ use datafusion_expr::{
6665 EmptyRelation , Extension , Join , JoinConstraint , Limit , Prepare , Projection ,
6766 Repartition , Sort , SubqueryAlias , TableScan , Values , Window ,
6867 } ,
69- AggregateUDF , ColumnUnnestList , DistinctOn , DmlStatement , DropView , Expr , FetchType ,
70- LogicalPlan , LogicalPlanBuilder , RecursiveQuery , ScalarUDF , SkipType , SortExpr ,
71- Statement , TableSource , Unnest , WindowUDF ,
68+ AggregateUDF , DistinctOn , DmlStatement , DropView , Expr , LogicalPlan ,
69+ LogicalPlanBuilder , RecursiveQuery , ScalarUDF , SortExpr , TableSource , Unnest ,
70+ WindowUDF ,
7271} ;
7372
7473use self :: to_proto:: { serialize_expr, serialize_exprs} ;
@@ -1695,7 +1694,7 @@ impl AsLogicalPlan for LogicalPlanNode {
16951694 ) ) ,
16961695 LogicalPlan :: Dml ( DmlStatement {
16971696 table_name,
1698- target ,
1697+ dst ,
16991698 op,
17001699 input,
17011700 ..
@@ -1708,7 +1707,7 @@ impl AsLogicalPlan for LogicalPlanNode {
17081707 input : Some ( Box :: new ( input) ) ,
17091708 target : Some ( Box :: new ( from_table_source (
17101709 table_name. clone ( ) ,
1711- Arc :: clone ( target ) ,
1710+ Arc :: clone ( dst ) ,
17121711 extension_codec,
17131712 ) ?) ) ,
17141713 table_name : Some ( table_name. clone ( ) . into ( ) ) ,
0 commit comments