+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| plan_type     | plan                                                                                                                                                                                                                                                       |
+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| logical_plan  | Projection: SUM(lineitem.l_extendedprice * lineitem.l_discount) AS revenue                                                                                                                                                                                 |
|               |   Aggregate: groupBy=[[]], aggr=[[SUM(lineitem.l_extendedprice * lineitem.l_discount)]]                                                                                                                                                                    |
|               |     Projection: lineitem.l_extendedprice, lineitem.l_discount                                                                                                                                                                                              |
|               |       Filter: lineitem.l_shipdate >= Date32("8766") AND lineitem.l_shipdate < Date32("9131") AND lineitem.l_discount >= Decimal128(Some(5),15,2) AND lineitem.l_discount <= Decimal128(Some(7),15,2) AND lineitem.l_quantity < Decimal128(Some(2400),15,2) |
|               |         TableScan: lineitem projection=[l_quantity, l_extendedprice, l_discount, l_shipdate]                                                                                                                                                               |
| physical_plan | ProjectionExec: expr=[SUM(lineitem.l_extendedprice * lineitem.l_discount)@0 as revenue]                                                                                                                                                                    |
|               |   AggregateExec: mode=Final, gby=[], aggr=[SUM(lineitem.l_extendedprice * lineitem.l_discount)]                                                                                                                                                            |
|               |     CoalescePartitionsExec                                                                                                                                                                                                                                 |
|               |       AggregateExec: mode=Partial, gby=[], aggr=[SUM(lineitem.l_extendedprice * lineitem.l_discount)]                                                                                                                                                      |
|               |         RepartitionExec: partitioning=RoundRobinBatch(2), input_partitions=0                                                                                                                                                                               |
|               |           ProjectionExec: expr=[l_extendedprice@1 as l_extendedprice, l_discount@2 as l_discount]                                                                                                                                                          |
|               |             CoalesceBatchesExec: target_batch_size=8192                                                                                                                                                                                                    |
|               |               FilterExec: l_shipdate@3 >= 8766 AND l_shipdate@3 < 9131 AND l_discount@2 >= Some(5),15,2 AND l_discount@2 <= Some(7),15,2 AND l_quantity@0 < Some(2400),15,2                                                                                |
|               |                 MemoryExec: partitions=0, partition_sizes=[]                                                                                                                                                                                               |
|               |                                                                                                                                                                                                                                                            |
+---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+