mirror of
https://github.com/postgres/postgres.git
synced 2025-08-12 15:23:02 +03:00
Improve comment: add note that grotty special case in mdread() is
required by hash index implementation.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.92 2002/08/06 02:36:34 tgl Exp $
|
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.93 2002/11/12 15:26:30 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@@ -434,8 +434,12 @@ mdread(Relation reln, BlockNumber blocknum, char *buffer)
|
|||||||
if ((nbytes = FileRead(v->mdfd_vfd, buffer, BLCKSZ)) != BLCKSZ)
|
if ((nbytes = FileRead(v->mdfd_vfd, buffer, BLCKSZ)) != BLCKSZ)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* If we are at EOF, return zeroes without complaining. (XXX Is
|
* If we are at or past EOF, return zeroes without complaining.
|
||||||
* this still necessary/a good idea??)
|
* Also substitute zeroes if we found a partial block at EOF.
|
||||||
|
*
|
||||||
|
* XXX this is really ugly, bad design. However the current
|
||||||
|
* implementation of hash indexes requires it, because hash index
|
||||||
|
* pages are initialized out-of-order.
|
||||||
*/
|
*/
|
||||||
if (nbytes == 0 ||
|
if (nbytes == 0 ||
|
||||||
(nbytes > 0 && mdnblocks(reln) == blocknum))
|
(nbytes > 0 && mdnblocks(reln) == blocknum))
|
||||||
|
Reference in New Issue
Block a user