diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-12-12 15:45:01 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-12-12 15:45:01 +0900 |
commit | 6a9b5a2f82cb8f7267d9e25093a643d47fd3fbb6 (patch) | |
tree | 2b9450d217cd4c45b57b763bc0c93af153a6a625 | |
parent | be9d4b9280606a0b0984ba46c452a48961cf92d4 (diff) | |
download | postgresql-6a9b5a2f82cb8f7267d9e25093a643d47fd3fbb6.tar.gz postgresql-6a9b5a2f82cb8f7267d9e25093a643d47fd3fbb6.zip |
Remove extra parenthesis from comment.
-rw-r--r-- | src/backend/partitioning/partbounds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/partitioning/partbounds.c b/src/backend/partitioning/partbounds.c index f205cd435e1..0c5b49a5c49 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 |