@@ -3095,7 +3095,7 @@ async fn planning_inplace_aggregate(service: Box<dyn SqlClient>) {
30953095 "PartiallySortedFinalAggregate, partitions: 1\
30963096 \n Worker, partitions: 1\
30973097 \n PartiallySortedPartialAggregate, partitions: 1\
3098- \n CoalesceBatchesExec , partitions: 1\
3098+ \n CoalesceBatches , partitions: 1\
30993099 \n Filter, partitions: 1\
31003100 \n Scan, index: default:2:[2]:sort_on[url, segment, day], fields: *, partitions: 1\
31013101 \n Sort, partitions: 1\
@@ -3113,7 +3113,7 @@ async fn planning_inplace_aggregate(service: Box<dyn SqlClient>) {
31133113 "PartiallySortedFinalAggregate, partitions: 1\
31143114 \n Worker, partitions: 1\
31153115 \n PartiallySortedPartialAggregate, partitions: 1\
3116- \n CoalesceBatchesExec , partitions: 1\
3116+ \n CoalesceBatches , partitions: 1\
31173117 \n Filter, partitions: 1\
31183118 \n Scan, index: default:2:[2]:sort_on[url, segment, day], fields: *, partitions: 1\
31193119 \n Sort, partitions: 1\
@@ -3198,7 +3198,7 @@ async fn planning_hints(service: Box<dyn SqlClient>) {
31983198 \n Worker, single_vals: [1]\
31993199 \n CoalescePartitions, single_vals: [1]\
32003200 \n Projection, [id3, id2], single_vals: [1]\
3201- \n CoalesceBatchesExec , single_vals: [0]\
3201+ \n CoalesceBatches , single_vals: [0]\
32023202 \n Filter, single_vals: [0]\
32033203 \n Scan, index: default:1:[1], fields: [id2, id3]\
32043204 \n Empty"
@@ -3212,7 +3212,7 @@ async fn planning_hints(service: Box<dyn SqlClient>) {
32123212 assert_eq ! (
32133213 pp_phys_plan_ext( p. worker. as_ref( ) , & show_hints) ,
32143214 "Worker, sort_order: [0]\
3215- \n CoalesceBatchesExec , sort_order: [0]\
3215+ \n CoalesceBatches , sort_order: [0]\
32163216 \n Filter, sort_order: [0]\
32173217 \n Scan, index: default:1:[1]:sort_on[id1, id2], fields: *, sort_order: [0, 1, 2]\
32183218 \n Sort, sort_order: [0, 1, 2]\
@@ -3225,7 +3225,7 @@ async fn planning_hints(service: Box<dyn SqlClient>) {
32253225 assert_eq ! (
32263226 pp_phys_plan_ext( p. worker. as_ref( ) , & show_hints) ,
32273227 "Worker, sort_order: [0, 1]\
3228- \n CoalesceBatchesExec , sort_order: [0, 1]\
3228+ \n CoalesceBatches , sort_order: [0, 1]\
32293229 \n Filter, sort_order: [0, 1]\
32303230 \n CoalescePartitions, sort_order: [0, 1, 2]\
32313231 \n Scan, index: default:1:[1], fields: *, sort_order: [0, 1, 2]\
@@ -3284,13 +3284,13 @@ async fn planning_inplace_aggregate2(service: Box<dyn SqlClient>) {
32843284 \n CoalescePartitions\
32853285 \n Union\
32863286 \n CoalescePartitions\
3287- \n CoalesceBatchesExec \
3287+ \n CoalesceBatches \
32883288 \n Filter\
32893289 \n Scan, index: default:1:[1], fields: *, sort_order: [0, 1, 2, 3, 4]\
32903290 \n Sort, by: [allowed@0, site_id@1, url@2, day@3, hits@4], sort_order: [0, 1, 2, 3, 4]\
32913291 \n Empty\
32923292 \n CoalescePartitions\
3293- \n CoalesceBatchesExec \
3293+ \n CoalesceBatches \
32943294 \n Filter\
32953295 \n Scan, index: default:2:[2], fields: *, sort_order: [0, 1, 2, 3, 4]\
32963296 \n Sort, by: [allowed@0, site_id@1, url@2, day@3, hits@4], sort_order: [0, 1, 2, 3, 4]\
@@ -3547,7 +3547,7 @@ async fn planning_simple(service: Box<dyn SqlClient>) {
35473547 assert_eq ! (
35483548 pp_phys_plan( p. worker. as_ref( ) ) ,
35493549 "Worker\
3550- \n CoalesceBatchesExec \
3550+ \n CoalesceBatches \
35513551 \n Filter\
35523552 \n CoalescePartitions\
35533553 \n Scan, index: default:1:[1], fields: [id, amount]\
@@ -3573,7 +3573,7 @@ async fn planning_simple(service: Box<dyn SqlClient>) {
35733573 pp_phys_plan( p. worker. as_ref( ) ) ,
35743574 "Sort\
35753575 \n Worker\
3576- \n CoalesceBatchesExec \
3576+ \n CoalesceBatches \
35773577 \n Filter\
35783578 \n CoalescePartitions\
35793579 \n Scan, index: default:1:[1], fields: [id, amount]\
@@ -3599,7 +3599,7 @@ async fn planning_simple(service: Box<dyn SqlClient>) {
35993599 pp_phys_plan( p. worker. as_ref( ) ) ,
36003600 "GlobalLimit, n: 10\
36013601 \n Worker\
3602- \n CoalesceBatchesExec \
3602+ \n CoalesceBatches \
36033603 \n Filter\
36043604 \n CoalescePartitions\
36053605 \n Scan, index: default:1:[1], fields: [id, amount]\
@@ -3692,7 +3692,7 @@ async fn planning_filter_index_selection(service: Box<dyn SqlClient>) {
36923692 "SortedFinalAggregate\
36933693 \n Worker\
36943694 \n SortedPartialAggregate\
3695- \n CoalesceBatchesExec \
3695+ \n CoalesceBatches \
36963696 \n Filter\
36973697 \n Scan, index: cb:2:[2]:sort_on[c, b], fields: [b, c, amount]\
36983698 \n Sort\
@@ -3716,7 +3716,7 @@ async fn planning_filter_index_selection(service: Box<dyn SqlClient>) {
37163716 \n Worker\
37173717 \n CoalescePartitions\
37183718 \n LinearPartialAggregate\
3719- \n CoalesceBatchesExec \
3719+ \n CoalesceBatches \
37203720 \n Filter\
37213721 \n Scan, index: cb:2:[2], fields: [b, c, amount]\
37223722 \n Sort\
@@ -3741,7 +3741,7 @@ async fn planning_filter_index_selection(service: Box<dyn SqlClient>) {
37413741 "SortedFinalAggregate\
37423742 \n Worker\
37433743 \n SortedPartialAggregate\
3744- \n CoalesceBatchesExec \
3744+ \n CoalesceBatches \
37453745 \n Filter\
37463746 \n Scan, index: cb:2:[2]:sort_on[c, b], fields: [a, b, c, amount]\
37473747 \n Sort\
@@ -3911,15 +3911,15 @@ async fn planning_3_table_joins(service: Box<dyn SqlClient>) {
39113911 \n MergeJoin, on: [product_id@1 = product_id@0]\
39123912 \n Projection, [order_id, product_id, customer_name]\
39133913 \n MergeJoin, on: [customer_id@1 = customer_id@0]\
3914- \n CoalesceBatchesExec \
3914+ \n CoalesceBatches \
39153915 \n Filter, predicate: product_id@2 = 125\
39163916 \n Scan, index: by_product_customer:3:[3]:sort_on[product_id, customer_id], fields: [order_id, customer_id, product_id], predicate: BinaryExpr(BinaryExpr { left: Column(Column { relation: None, name: \" product_id\" }), op: Eq, right: Literal(Int64(125)) })\
39173917 \n Sort\
39183918 \n Empty\
39193919 \n Scan, index: default:4:[4]:sort_on[customer_id], fields: *\
39203920 \n Sort\
39213921 \n Empty\
3922- \n CoalesceBatchesExec \
3922+ \n CoalesceBatches \
39233923 \n Filter, predicate: product_id@0 = 125\
39243924 \n Scan, index: default:5:[5]:sort_on[product_id], fields: *, predicate: BinaryExpr(BinaryExpr { left: Column(Column { relation: None, name: \" product_id\" }), op: Eq, right: Literal(Int64(125)) })\
39253925 \n Sort\
@@ -7530,7 +7530,7 @@ async fn planning_aggregate_index(service: Box<dyn SqlClient>) {
75307530 "SortedFinalAggregate\
75317531 \n Worker\
75327532 \n SortedPartialAggregate\
7533- \n CoalesceBatchesExec \
7533+ \n CoalesceBatches \
75347534 \n Filter\
75357535 \n Scan, index: default:3:[3]:sort_on[a, b, c], fields: *\
75367536 \n Sort\
@@ -7576,7 +7576,7 @@ async fn planning_aggregate_index(service: Box<dyn SqlClient>) {
75767576 "SortedFinalAggregate\
75777577 \n Worker\
75787578 \n SortedPartialAggregate\
7579- \n CoalesceBatchesExec \
7579+ \n CoalesceBatches \
75807580 \n Filter\
75817581 \n Scan, index: aggr_index:2:[2]:sort_on[a, b], fields: [a, b, a_sum]\
75827582 \n Sort\
0 commit comments