diff options
author | Peter Eisentraut | 2018-06-04 20:17:34 +0000 |
---|---|---|
committer | Peter Eisentraut | 2018-06-04 20:17:34 +0000 |
commit | 3f85c62d9e825eedd1315d249ef1ad793ca78ed4 (patch) | |
tree | 4d273d4fffca0721749643ac5cb43166eba84a3e | |
parent | 2241ad1556b3734b4867117bee8d78ef9577fceb (diff) |
Fix spurious non-ASCII bytes
-rw-r--r-- | src/backend/catalog/heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index 39813de9919..d59bd5bb00f 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -3406,7 +3406,7 @@ RemovePartitionKeyByRelId(Oid relid) * pg_partitioned_table. * * Also, invalidate the parent's relcache, so that the next rebuild will load - * the new partition's info into its partition descriptor. If there is a + * the new partition's info into its partition descriptor. If there is a * default partition, we must invalidate its relcache entry as well. */ void |