Skip to content

Commit 0417e54

Browse files
authored
Minor: Update exected output due to logical conflict (#11824)
1 parent f19d30d commit 0417e54

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

datafusion/sqllogictest/test_files/aggregate.slt

+7-7
Original file line numberDiff line numberDiff line change
@@ -4530,21 +4530,21 @@ EXPLAIN SELECT DISTINCT c3, min(c1) FROM aggregate_test_100 group by c3 limit 5;
45304530
----
45314531
logical_plan
45324532
01)Limit: skip=0, fetch=5
4533-
02)--Aggregate: groupBy=[[aggregate_test_100.c3, MIN(aggregate_test_100.c1)]], aggr=[[]]
4534-
03)----Aggregate: groupBy=[[aggregate_test_100.c3]], aggr=[[MIN(aggregate_test_100.c1)]]
4533+
02)--Aggregate: groupBy=[[aggregate_test_100.c3, min(aggregate_test_100.c1)]], aggr=[[]]
4534+
03)----Aggregate: groupBy=[[aggregate_test_100.c3]], aggr=[[min(aggregate_test_100.c1)]]
45354535
04)------TableScan: aggregate_test_100 projection=[c1, c3]
45364536
physical_plan
45374537
01)GlobalLimitExec: skip=0, fetch=5
45384538
02)--CoalescePartitionsExec
45394539
03)----LocalLimitExec: fetch=5
4540-
04)------AggregateExec: mode=FinalPartitioned, gby=[c3@0 as c3, MIN(aggregate_test_100.c1)@1 as MIN(aggregate_test_100.c1)], aggr=[], lim=[5]
4540+
04)------AggregateExec: mode=FinalPartitioned, gby=[c3@0 as c3, min(aggregate_test_100.c1)@1 as min(aggregate_test_100.c1)], aggr=[], lim=[5]
45414541
05)--------CoalesceBatchesExec: target_batch_size=8192
4542-
06)----------RepartitionExec: partitioning=Hash([c3@0, MIN(aggregate_test_100.c1)@1], 4), input_partitions=4
4543-
07)------------AggregateExec: mode=Partial, gby=[c3@0 as c3, MIN(aggregate_test_100.c1)@1 as MIN(aggregate_test_100.c1)], aggr=[], lim=[5]
4544-
08)--------------AggregateExec: mode=FinalPartitioned, gby=[c3@0 as c3], aggr=[MIN(aggregate_test_100.c1)]
4542+
06)----------RepartitionExec: partitioning=Hash([c3@0, min(aggregate_test_100.c1)@1], 4), input_partitions=4
4543+
07)------------AggregateExec: mode=Partial, gby=[c3@0 as c3, min(aggregate_test_100.c1)@1 as min(aggregate_test_100.c1)], aggr=[], lim=[5]
4544+
08)--------------AggregateExec: mode=FinalPartitioned, gby=[c3@0 as c3], aggr=[min(aggregate_test_100.c1)]
45454545
09)----------------CoalesceBatchesExec: target_batch_size=8192
45464546
10)------------------RepartitionExec: partitioning=Hash([c3@0], 4), input_partitions=4
4547-
11)--------------------AggregateExec: mode=Partial, gby=[c3@1 as c3], aggr=[MIN(aggregate_test_100.c1)]
4547+
11)--------------------AggregateExec: mode=Partial, gby=[c3@1 as c3], aggr=[min(aggregate_test_100.c1)]
45484548
12)----------------------RepartitionExec: partitioning=RoundRobinBatch(4), input_partitions=1
45494549
13)------------------------CsvExec: file_groups={1 group: [[WORKSPACE_ROOT/testing/data/csv/aggregate_test_100.csv]]}, projection=[c1, c3], has_header=true
45504550

0 commit comments

Comments
 (0)