summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2019-12-12 15:45:02 +0900
committerEtsuro Fujita <efujita@postgresql.org>2019-12-12 15:45:02 +0900
commitd94766a65a6012ccf9926bd154b087a0afb15068 (patch)
treebb2a2b00c93734d9772f55422d6c5dd5b1c4bc47
parent49b83f6474349ecc756348f422003f447a5058bf (diff)
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 128977a9112..a9c10523f38 100644
--- a/src/backend/partitioning/partbounds.c
+++ b/src/backend/partitioning/partbounds.c
@@ -1588,7 +1588,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