@@ -39,9 +39,9 @@ physical_plan
393901)ProjectionExec: expr=[__unnest_placeholder(v.column2,depth=1)@0 as uc2]
404002)--UnnestExec
414103)----RepartitionExec: partitioning=RoundRobinBatch(4), input_partitions=1
42- 04)------ProjectionExec: expr=[column2@1 as __unnest_placeholder(v.column2), column1@0 as column1 ]
42+ 04)------ProjectionExec: expr=[column2@0 as __unnest_placeholder(v.column2)]
434305)--------CoalesceBatchesExec: target_batch_size=8192
44- 06)----------FilterExec: column1@0 = 2
44+ 06)----------FilterExec: column1@0 = 2, projection=[column2@1]
454507)------------DataSourceExec: partitions=1, partition_sizes=[1]
4646
4747query I
@@ -59,10 +59,9 @@ physical_plan
595902)--CoalesceBatchesExec: target_batch_size=8192
606003)----FilterExec: __unnest_placeholder(v.column2,depth=1)@0 > 3
616104)------RepartitionExec: partitioning=RoundRobinBatch(4), input_partitions=1
62- 05)--------ProjectionExec: expr=[__unnest_placeholder(v.column2,depth=1)@0 as __unnest_placeholder(v.column2,depth=1)]
63- 06)----------UnnestExec
64- 07)------------ProjectionExec: expr=[column2@1 as __unnest_placeholder(v.column2), column1@0 as column1]
65- 08)--------------DataSourceExec: partitions=1, partition_sizes=[1]
62+ 05)--------UnnestExec
63+ 06)----------ProjectionExec: expr=[column2@0 as __unnest_placeholder(v.column2)]
64+ 07)------------DataSourceExec: partitions=1, partition_sizes=[1]
6665
6766query II
6867select uc2, column1 from (select unnest(column2) as uc2, column1 from v) where uc2 > 3 AND column1 = 2;
0 commit comments