Skip to content

Commit b28bf32

Browse files
committed
fix sqllogictests
1 parent 582e7c7 commit b28bf32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: datafusion/sqllogictest/test_files/information_schema.slt

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ datafusion.optimizer.max_passes 3 Number of times that the optimizer will attemp
351351
datafusion.optimizer.prefer_existing_sort false When true, DataFusion will opportunistically remove sorts when the data is already sorted, (i.e. setting `preserve_order` to true on `RepartitionExec` and using `SortPreservingMergeExec`) When false, DataFusion will maximize plan parallelism using `RepartitionExec` even if this requires subsequently resorting data using a `SortExec`.
352352
datafusion.optimizer.prefer_existing_union false When set to true, the optimizer will not attempt to convert Union to Interleave
353353
datafusion.optimizer.prefer_hash_join true When set to true, the physical plan optimizer will prefer HashJoin over SortMergeJoin. HashJoin can work more efficiently than SortMergeJoin but consumes more memory
354-
datafusion.optimizer.prefer_hash_selection_vector_partitioning_agg false When set to true, the physical plan optimizer will prefer HashSelectionVectorPartitioning for RepartitionExec over HashPartitioning. HashSelectionVectorPartitioning can work without data copying.
354+
datafusion.optimizer.prefer_hash_selection_vector_partitioning_agg false When set to true, the physical plan optimizer will prefer HashSelectionVectorPartitioning for HashAggregate over HashPartitioning. HashSelectionVectorPartitioning can work without data copying.
355355
datafusion.optimizer.repartition_aggregations true Should DataFusion repartition data using the aggregate keys to execute aggregates in parallel using the provided `target_partitions` level
356356
datafusion.optimizer.repartition_file_min_size 10485760 Minimum total files size in bytes to perform file scan repartitioning.
357357
datafusion.optimizer.repartition_file_scans true When set to `true`, file groups will be repartitioned to achieve maximum parallelism. Currently Parquet and CSV formats are supported. If set to `true`, all files will be repartitioned evenly (i.e., a single large file might be partitioned into smaller chunks) for parallel scanning. If set to `false`, different files will be read in parallel, but repartitioning won't happen within a single file.

Diff for: datafusion/sqllogictest/test_files/join.slt.part

+2-2
Original file line numberDiff line numberDiff line change
@@ -1476,16 +1476,16 @@ physical_plan
14761476
19)--------ProjectionExec: expr=[b@0 as b, CAST(b@0 AS Int64) as CAST(s.b AS Int64)]
14771477
20)----------DataSourceExec: partitions=1, partition_sizes=[1]
14781478

1479-
query IIII
1479+
query IIII rowsort
14801480
SELECT * FROM
14811481
(SELECT x+1 AS col0, y+1 AS col1 FROM PAIRS WHERE x == y)
14821482
JOIN f
14831483
ON col0 = f.a
14841484
JOIN s
14851485
ON col1 = s.b
14861486
----
1487-
3 3 3 3
14881487
2 2 2 2
1488+
3 3 3 3
14891489

14901490
# reset the config
14911491
statement ok

0 commit comments

Comments
 (0)