summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-02-16 10:33:59 -0500
committerPeter Eisentraut <peter_e@gmx.net>2018-02-16 10:33:59 -0500
commit2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9 (patch)
treedbaa85975553ce1c440d786a0c16bfa95c014e5e /doc/src
parentf8437c819acc37b43bd2d5b19a6b7609b4ea1292 (diff)
Rename enable_partition_wise_join to enable_partitionwise_join
Discussion: https://www.postgresql.org/message-id/flat/ad24e4f4-6481-066e-e3fb-6ef4a3121882%402ndquadrant.com
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/config.sgml12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index c45979dee48..4c998fe51f9 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -3736,20 +3736,20 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
</listitem>
</varlistentry>
- <varlistentry id="guc-enable-partition-wise-join" xreflabel="enable_partition_wise_join">
- <term><varname>enable_partition_wise_join</varname> (<type>boolean</type>)
+ <varlistentry id="guc-enable-partitionwise-join" xreflabel="enable_partitionwise_join">
+ <term><varname>enable_partitionwise_join</varname> (<type>boolean</type>)
<indexterm>
- <primary><varname>enable_partition_wise_join</varname> configuration parameter</primary>
+ <primary><varname>enable_partitionwise_join</varname> configuration parameter</primary>
</indexterm>
</term>
<listitem>
<para>
- Enables or disables the query planner's use of partition-wise join,
+ Enables or disables the query planner's use of partitionwise join,
which allows a join between partitioned tables to be performed by
- joining the matching partitions. Partition-wise join currently applies
+ joining the matching partitions. Partitionwise join currently applies
only when the join conditions include all the partition keys, which
must be of the same data type and have exactly matching sets of child
- partitions. Because partition-wise join planning can use significantly
+ partitions. Because partitionwise join planning can use significantly
more CPU time and memory during planning, the default is
<literal>off</literal>.
</para>