@@ -879,7 +879,7 @@ mod tests {
879
879
let expected_plan = [
880
880
"CoalescePartitionsExec" ,
881
881
" OnDemandRepartitionExec: partitioning=OnDemand(3), input_partitions=2" ,
882
- " MemoryExec : partitions=2, partition_sizes=[2, 2]" ,
882
+ " DataSourceExec : partitions=2, partition_sizes=[2, 2]" ,
883
883
] ;
884
884
assert_plan ! ( expected_plan, coalesce_exec. clone( ) ) ;
885
885
@@ -1213,8 +1213,8 @@ mod tests {
1213
1213
let expected_plan = [
1214
1214
"OnDemandRepartitionExec: partitioning=OnDemand(10), input_partitions=2, preserve_order=true, sort_exprs=c0@0 ASC" ,
1215
1215
" UnionExec" ,
1216
- " MemoryExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1217
- " MemoryExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1216
+ " DataSourceExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1217
+ " DataSourceExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1218
1218
] ;
1219
1219
assert_plan ! ( expected_plan, exec) ;
1220
1220
Ok ( ( ) )
@@ -1307,7 +1307,7 @@ mod tests {
1307
1307
// Repartition should not preserve order
1308
1308
let expected_plan = [
1309
1309
"OnDemandRepartitionExec: partitioning=OnDemand(10), input_partitions=1" ,
1310
- " MemoryExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1310
+ " DataSourceExec : partitions=1, partition_sizes=[0], output_ordering=c0@0 ASC" ,
1311
1311
] ;
1312
1312
assert_plan ! ( expected_plan, exec) ;
1313
1313
Ok ( ( ) )
@@ -1329,8 +1329,8 @@ mod tests {
1329
1329
let expected_plan = [
1330
1330
"OnDemandRepartitionExec: partitioning=OnDemand(10), input_partitions=2" ,
1331
1331
" UnionExec" ,
1332
- " MemoryExec : partitions=1, partition_sizes=[0]" ,
1333
- " MemoryExec : partitions=1, partition_sizes=[0]" ,
1332
+ " DataSourceExec : partitions=1, partition_sizes=[0]" ,
1333
+ " DataSourceExec : partitions=1, partition_sizes=[0]" ,
1334
1334
] ;
1335
1335
assert_plan ! ( expected_plan, exec) ;
1336
1336
Ok ( ( ) )
0 commit comments