aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-10-28 11:14:23 +0200
committerRobert Haas <rhaas@postgresql.org>2017-10-28 11:14:23 +0200
commit24fd674a1affe1ca9776bd6b21b2b35feb0fe6ed (patch)
tree5b6993c7d1f152fc3a9b56a59cc66f0f8b9146b9 /src
parent1310ac258c773ab9d41650b509098dd01cb4ecf3 (diff)
downloadpostgresql-24fd674a1affe1ca9776bd6b21b2b35feb0fe6ed.tar.gz
postgresql-24fd674a1affe1ca9776bd6b21b2b35feb0fe6ed.zip
Fix grammar.
Etsuro Fujita Discussion: http://postgr.es/m/cc7767b6-6a1b-74a2-8b3c-48b8e64c12ed@lab.ntt.co.jp
Diffstat (limited to 'src')
-rw-r--r--src/backend/optimizer/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/README b/src/backend/optimizer/README
index 031e5037617..1e4084dcf4c 100644
--- a/src/backend/optimizer/README
+++ b/src/backend/optimizer/README
@@ -1088,8 +1088,8 @@ broken into joins between the matching partitions. The resultant join is
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 partition tables
-into join between their partitions is called partition-wise join. We will use
+partitions. This technique of breaking down a join between partitioned tables
+into joins between their partitions is called partition-wise join. We will use
term "partitioned relation" for either a partitioned table or a join between
compatibly partitioned tables.