aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-03-26 22:15:50 -0400
committerRobert Haas <rhaas@postgresql.org>2017-03-26 22:15:50 -0400
commitf0a6046bcb15c2fe48384ef547df2bfb5d7f0a89 (patch)
tree92c4075c68a8852b38c2655345b5b780e493b770
parentfc70a4b0df38bda6a13941f1581f25fbb643c7f3 (diff)
downloadpostgresql-f0a6046bcb15c2fe48384ef547df2bfb5d7f0a89.tar.gz
postgresql-f0a6046bcb15c2fe48384ef547df2bfb5d7f0a89.zip
Fix comment.
Cut-and-paste led to something silly. Ashutosh Sharma, reviewed by Amit Kapila and by me Discussion: http://postgr.es/m/CAE9k0PmUbvQSBY7kwN_OkuqBYyHRXBX-c1ZkuAgR5vgF0GeWzQ@mail.gmail.com
-rw-r--r--src/backend/access/hash/hashpage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/hash/hashpage.c b/src/backend/access/hash/hashpage.c
index 622cc4b837d..61ca2ecf55e 100644
--- a/src/backend/access/hash/hashpage.c
+++ b/src/backend/access/hash/hashpage.c
@@ -1002,8 +1002,8 @@ _hash_alloc_buckets(Relation rel, BlockNumber firstblock, uint32 nblocks)
page = (Page) zerobuf;
/*
- * Initialize the freed overflow page. Just zeroing the page won't work,
- * See _hash_freeovflpage for similar usage.
+ * Initialize the page. Just zeroing the page won't work; see
+ * _hash_freeovflpage for similar usage.
*/
_hash_pageinit(page, BLCKSZ);