mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
update query_plan_join_swap_table default value to "auto"
This commit is contained in:
parent
dc0aa94110
commit
93e10644b7
@ -1921,7 +1921,7 @@ See also:
|
||||
For single JOIN in case of identifier ambiguity prefer left table
|
||||
)", IMPORTANT) \
|
||||
\
|
||||
DECLARE(BoolAuto, query_plan_join_swap_table, {}, R"(
|
||||
DECLARE(BoolAuto, query_plan_join_swap_table, Field("auto"), R"(
|
||||
Determine which side of the join should be the build table (also called inner, the one inserted into the hash table for a hash join) in the query plan. This setting is supported only for `ALL` join strictness with the `JOIN ON` clause. Possible values are:
|
||||
- 'auto': Let the planner decide which table to use as the build table.
|
||||
- 'false': Never swap tables (the right table is the build table).
|
||||
|
Loading…
Reference in New Issue
Block a user