Skip to content

Commit ec13296

Browse files
committed
Fix expected results in information_schema.slt
1 parent 8416100 commit ec13296

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

datafusion/sqllogictest/test_files/information_schema.slt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ datafusion.optimizer.hash_join_single_partition_threshold 1048576
320320
datafusion.optimizer.hash_join_single_partition_threshold_rows 131072
321321
datafusion.optimizer.join_reordering true
322322
datafusion.optimizer.max_passes 3
323+
datafusion.optimizer.physical_uncorrelated_scalar_subquery true
323324
datafusion.optimizer.prefer_existing_sort false
324325
datafusion.optimizer.prefer_existing_union false
325326
datafusion.optimizer.prefer_hash_join true
@@ -470,6 +471,7 @@ datafusion.optimizer.hash_join_single_partition_threshold 1048576 The maximum es
470471
datafusion.optimizer.hash_join_single_partition_threshold_rows 131072 The maximum estimated size in rows for one input side of a HashJoin will be collected into a single partition
471472
datafusion.optimizer.join_reordering true When set to true, the physical plan optimizer may swap join inputs based on statistics. When set to false, statistics-driven join input reordering is disabled and the original join order in the query is used.
472473
datafusion.optimizer.max_passes 3 Number of times that the optimizer will attempt to optimize the plan
474+
datafusion.optimizer.physical_uncorrelated_scalar_subquery true When set to true, uncorrelated scalar subqueries are left in the logical plan and executed by `ScalarSubqueryExec` during physical execution. When set to false, all scalar subqueries (including uncorrelated ones) are rewritten to left joins by the `ScalarSubqueryToJoin` optimizer rule.
473475
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`.
474476
datafusion.optimizer.prefer_existing_union false When set to true, the optimizer will not attempt to convert Union to Interleave
475477
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

0 commit comments

Comments
 (0)