summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/README
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 /src/backend/optimizer/README
parentf8437c819acc37b43bd2d5b19a6b7609b4ea1292 (diff)
downloadpostgresql-2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9.tar.gz
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 'src/backend/optimizer/README')
-rw-r--r--src/backend/optimizer/README6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/README b/src/backend/optimizer/README
index 1e4084dcf4..84e60f7f6f 100644
--- a/src/backend/optimizer/README
+++ b/src/backend/optimizer/README
@@ -1076,8 +1076,8 @@ plan as possible. Expanding the range of cases in which more work can be
pushed below the Gather (and costing them accurately) is likely to keep us
busy for a long time to come.
-Partition-wise joins
---------------------
+Partitionwise joins
+-------------------
A join between two similarly partitioned tables can be broken down into joins
between their matching partitions if there exists an equi-join condition
between the partition keys of the joining tables. The equi-join between
@@ -1089,7 +1089,7 @@ partitioned in the same way as the joining relations, thus allowing an N-way
join between similarly partitioned tables having equi-join condition between
their partition keys to be broken down into N-way joins between their matching
partitions. This technique of breaking down a join between partitioned tables
-into joins between their partitions is called partition-wise join. We will use
+into joins between their partitions is called partitionwise join. We will use
term "partitioned relation" for either a partitioned table or a join between
compatibly partitioned tables.