aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2019-12-12 15:45:00 +0900
committerEtsuro Fujita <efujita@postgresql.org>2019-12-12 15:45:00 +0900
commita41a1456c4a1040974939db23a81101a2f6ade6f (patch)
tree3d0caf8a75cee806fa92d902b0395c95fba3a45d
parent591d404b9cd2c562bfe7fe60d76988d49b5ba2b1 (diff)
downloadpostgresql-a41a1456c4a1040974939db23a81101a2f6ade6f.tar.gz
postgresql-a41a1456c4a1040974939db23a81101a2f6ade6f.zip
Remove extra parenthesis from comment.
-rw-r--r--src/backend/partitioning/partbounds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/partitioning/partbounds.c b/src/backend/partitioning/partbounds.c
index cfb44e23e29..d160d6f1278 100644
--- a/src/backend/partitioning/partbounds.c
+++ b/src/backend/partitioning/partbounds.c
@@ -2261,7 +2261,7 @@ get_qual_for_list(Relation parent, PartitionBoundSpec *spec)
* AND
* (b > bl OR (b = bl AND c >= cl))
* AND
- * (b < bu) OR (b = bu AND c < cu))
+ * (b < bu OR (b = bu AND c < cu))
*
* If a bound datum is either MINVALUE or MAXVALUE, these expressions are
* simplified using the fact that any value is greater than MINVALUE and less