mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
Fix CHECK_RELATION_BLOCK_RANGE macro, which was not merely producing
a warning but was outright wrong.
This commit is contained in:
parent
4608f359a6
commit
93624bcda0
@ -57,12 +57,13 @@ extern Datum bt_page_stats(PG_FUNCTION_ARGS);
|
||||
#define IS_BTREE(r) ((r)->rd_rel->relam == BTREE_AM_OID)
|
||||
|
||||
#define CHECK_PAGE_OFFSET_RANGE(pg, offnum) { \
|
||||
if ( !(FirstOffsetNumber<=(offnum) && \
|
||||
(offnum)<=PageGetMaxOffsetNumber(pg)) ) \
|
||||
if ( !(FirstOffsetNumber <= (offnum) && \
|
||||
(offnum) <= PageGetMaxOffsetNumber(pg)) ) \
|
||||
elog(ERROR, "page offset number out of range"); }
|
||||
|
||||
/* note: BlockNumber is unsigned, hence can't be negative */
|
||||
#define CHECK_RELATION_BLOCK_RANGE(rel, blkno) { \
|
||||
if ( (blkno)<0 && RelationGetNumberOfBlocks((rel))<=(blkno) ) \
|
||||
if ( RelationGetNumberOfBlocks(rel) <= (BlockNumber) (blkno) ) \
|
||||
elog(ERROR, "block number out of range"); }
|
||||
|
||||
/* ------------------------------------------------
|
||||
|
@ -48,12 +48,13 @@ extern Datum pg_relpages(PG_FUNCTION_ARGS);
|
||||
#define IS_BTREE(r) ((r)->rd_rel->relam == BTREE_AM_OID)
|
||||
|
||||
#define CHECK_PAGE_OFFSET_RANGE(pg, offnum) { \
|
||||
if ( !(FirstOffsetNumber<=(offnum) && \
|
||||
(offnum)<=PageGetMaxOffsetNumber(pg)) ) \
|
||||
if ( !(FirstOffsetNumber <= (offnum) && \
|
||||
(offnum) <= PageGetMaxOffsetNumber(pg)) ) \
|
||||
elog(ERROR, "page offset number out of range"); }
|
||||
|
||||
/* note: BlockNumber is unsigned, hence can't be negative */
|
||||
#define CHECK_RELATION_BLOCK_RANGE(rel, blkno) { \
|
||||
if ( (blkno)<0 && RelationGetNumberOfBlocks((rel))<=(blkno) ) \
|
||||
if ( RelationGetNumberOfBlocks(rel) <= (BlockNumber) (blkno) ) \
|
||||
elog(ERROR, "block number out of range"); }
|
||||
|
||||
/* ------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user