Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Remove unused macros.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 2 May 2016 07:07:49 +0000 (10:07 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 2 May 2016 07:09:03 +0000 (10:09 +0300)
CHECK_PAGE_OFFSET_RANGE() has been unused forever.
CHECK_RELATION_BLOCK_RANGE() has been unused in pgstatindex.c ever since
bt_page_stats() and bt_page_items() functions were moved from pgstattuple
to pageinspect module. It still exists in pageinspect/btreefuncs.c.

Daniel Gustafsson

contrib/pageinspect/btreefuncs.c
contrib/pgstattuple/pgstatindex.c

index bc34af9b3c7960e39321bc8903f385a75eb2d8a3..0f36d9d825e25437346a66cd24de107034a17feb 100644 (file)
@@ -46,11 +46,6 @@ PG_FUNCTION_INFO_V1(bt_page_stats);
 #define IS_INDEX(r) ((r)->rd_rel->relkind == RELKIND_INDEX)
 #define IS_BTREE(r) ((r)->rd_rel->relam == BTREE_AM_OID)
 
-#define CHECK_PAGE_OFFSET_RANGE(pg, offnum) { \
-       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 ( RelationGetNumberOfBlocks(rel) <= (BlockNumber) (blkno) ) \
index 2c837949321c12cd5fdea5f147afff3015e28dc3..33fe1736ed2a435e5e57e47cc12e93cb1b2171e1 100644 (file)
@@ -51,16 +51,6 @@ PG_FUNCTION_INFO_V1(pgstatginindex);
 #define IS_BTREE(r) ((r)->rd_rel->relam == BTREE_AM_OID)
 #define IS_GIN(r) ((r)->rd_rel->relam == GIN_AM_OID)
 
-#define CHECK_PAGE_OFFSET_RANGE(pg, offnum) { \
-       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 ( RelationGetNumberOfBlocks(rel) <= (BlockNumber) (blkno) ) \
-            elog(ERROR, "block number out of range"); }
-
 /* ------------------------------------------------
  * A structure for a whole btree index statistics
  * used by pgstatindex().