diff options
author | Dean Rasheed | 2017-08-01 08:40:45 +0000 |
---|---|---|
committer | Dean Rasheed | 2017-08-01 08:40:45 +0000 |
commit | 4de6216877a32e869fe1cf168c1fe1ffb8c3d576 (patch) | |
tree | 30c91755c8316141c67275b70d41c52bedb114ae | |
parent | e662ef0f2e95d9da3df705ddaaff36b0c01c7acc (diff) |
Comment fix for partition_rbound_cmp().
This was an oversight in d363d42.
Beena Emerson
-rw-r--r-- | src/backend/catalog/partition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index e20ddce2db..9d50efb6a0 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -2128,7 +2128,7 @@ qsort_partition_rbound_cmp(const void *a, const void *b, void *arg) * partition_rbound_cmp * * Return for two range bounds whether the 1st one (specified in datum1, - * content1, and lower1) is <, =, or > the bound specified in *b2. + * kind1, and lower1) is <, =, or > the bound specified in *b2. * * Note that if the values of the two range bounds compare equal, then we take * into account whether they are upper or lower bounds, and an upper bound is |