diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:19 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:19 +0900 |
commit | 26555cbd6e1443ea783717fd49b2ca1d55e4a015 (patch) | |
tree | b959bfaaf96c4ab17f9655b4fee548177fe90a82 /src | |
parent | c5b796125299b7a1b37b8b5d6e5f0b316521c33a (diff) | |
download | postgresql-26555cbd6e1443ea783717fd49b2ca1d55e4a015.tar.gz postgresql-26555cbd6e1443ea783717fd49b2ca1d55e4a015.zip |
Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/cache/partcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/partcache.c b/src/backend/utils/cache/partcache.c index cd614eefac9..331c0f24754 100644 --- a/src/backend/utils/cache/partcache.c +++ b/src/backend/utils/cache/partcache.c @@ -709,7 +709,7 @@ RelationBuildPartitionDesc(Relation rel) boundinfo->default_index = mapping[default_index]; } - /* All partition must now have a valid mapping */ + /* All partitions must now have a valid mapping */ Assert(next_index == nparts); break; } |