@@ -1504,21 +1504,21 @@ impl ClusterSendExec {
1504
1504
}
1505
1505
}
1506
1506
1507
- pub fn worker_plans ( & self ) -> Vec < ( String , PreSerializedPlan ) > {
1507
+ pub fn worker_plans ( & self ) -> Result < Vec < ( String , PreSerializedPlan ) > , CubeError > {
1508
1508
let mut res = Vec :: new ( ) ;
1509
1509
for ( node_name, partitions) in self . partitions . iter ( ) {
1510
1510
res. push ( (
1511
1511
node_name. clone ( ) ,
1512
- self . serialized_plan_for_partitions ( partitions) ,
1512
+ self . serialized_plan_for_partitions ( partitions) ? ,
1513
1513
) ) ;
1514
1514
}
1515
- res
1515
+ Ok ( res)
1516
1516
}
1517
1517
1518
1518
fn serialized_plan_for_partitions (
1519
1519
& self ,
1520
1520
partitions : & ( Vec < ( u64 , RowRange ) > , Vec < InlineTableId > ) ,
1521
- ) -> PreSerializedPlan {
1521
+ ) -> Result < PreSerializedPlan , CubeError > {
1522
1522
let ( partitions, inline_table_ids) = partitions;
1523
1523
let mut ps = HashMap :: < _ , RowFilter > :: new ( ) ;
1524
1524
for ( id, range) in partitions {
@@ -1577,7 +1577,7 @@ impl ExecutionPlan for ClusterSendExec {
1577
1577
) -> Result < SendableRecordBatchStream , DataFusionError > {
1578
1578
let ( node_name, partitions) = & self . partitions [ partition] ;
1579
1579
1580
- let plan = self . serialized_plan_for_partitions ( partitions) ;
1580
+ let plan = self . serialized_plan_for_partitions ( partitions) ? ;
1581
1581
1582
1582
let cluster = self . cluster . clone ( ) ;
1583
1583
let schema = self . properties . eq_properties . schema ( ) . clone ( ) ;
0 commit comments