diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-03-26 22:15:50 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-03-26 22:15:50 -0400 |
commit | f0a6046bcb15c2fe48384ef547df2bfb5d7f0a89 (patch) | |
tree | 92c4075c68a8852b38c2655345b5b780e493b770 | |
parent | fc70a4b0df38bda6a13941f1581f25fbb643c7f3 (diff) | |
download | postgresql-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.c | 4 |
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); |