diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:20 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:20 +0900 |
commit | dcebb3e9c7cf7836779a82fcc202af9b5266a893 (patch) | |
tree | 1d626e13eed970d75ab28c84ded96c79da00298d | |
parent | 65468cc705ea8a329f175de7eed44163ce532482 (diff) |
Fix typo in comment.
-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 67cb3402833..ad6704079ff 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -508,7 +508,7 @@ RelationBuildPartitionDesc(Relation rel) boundinfo->null_index = mapping[null_index]; } - /* All partition must now have a valid mapping */ + /* All partitions must now have a valid mapping */ Assert(next_index == nparts); break; } |