mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
From: Tatsuo Ishii <t-ishii@sra.co.jp>
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.35 1999/02/13 23:14:36 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.36 1999/02/21 03:48:27 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
* This file contains only the public interface routines.
|
||||
@@ -372,7 +372,7 @@ btinsert(Relation rel, Datum *datum, char *nulls, ItemPointer ht_ctid, Relation
|
||||
pfree(btitem);
|
||||
pfree(itup);
|
||||
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
/* adjust any active scans that will be affected by this insertion */
|
||||
_bt_adjscans(rel, &(res->pointerData), BT_INSERT);
|
||||
#endif
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.40 1999/02/13 23:14:36 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.41 1999/02/21 03:48:27 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -613,7 +613,7 @@ _bt_compare(Relation rel,
|
||||
if (!P_RIGHTMOST(opaque))
|
||||
elog(ERROR, "_bt_compare: invalid comparison to high key");
|
||||
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
|
||||
/*
|
||||
* We just have to belive that right answer will not break
|
||||
@@ -1398,7 +1398,7 @@ _bt_endpoint(IndexScanDesc scan, ScanDirection dir)
|
||||
* maxoff). Scanning in BackwardScanDirection is not
|
||||
* understandable at all. Well - new stuff. - vadim 12/06/96
|
||||
*/
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
if (PageIsEmpty(page) || start > maxoff)
|
||||
{
|
||||
ItemPointerSet(current, blkno, maxoff);
|
||||
@@ -1444,7 +1444,7 @@ _bt_endpoint(IndexScanDesc scan, ScanDirection dir)
|
||||
* empty why do scanning in ForwardScanDirection ??? Well - new
|
||||
* stuff. - vadim 12/06/96
|
||||
*/
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
if (PageIsEmpty(page))
|
||||
{
|
||||
ItemPointerSet(current, blkno, FirstOffsetNumber);
|
||||
|
@@ -5,7 +5,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Id: nbtsort.c,v 1.36 1999/02/13 23:14:36 momjian Exp $
|
||||
* $Id: nbtsort.c,v 1.37 1999/02/21 03:48:27 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
*
|
||||
@@ -397,7 +397,7 @@ _bt_tapeclear(BTTapeBlock *tape)
|
||||
{
|
||||
/* blow away the contents of the old file */
|
||||
_bt_taperewind(tape);
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
FileSync(tape->bttb_fd);
|
||||
#endif
|
||||
FileTruncate(tape->bttb_fd, 0);
|
||||
@@ -781,7 +781,7 @@ _bt_blnewpage(Relation index, Buffer *buf, Page *page, int flags)
|
||||
BTPageOpaque opaque;
|
||||
|
||||
*buf = _bt_getbuf(index, P_NEW, BT_WRITE);
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
printf("\tblk=%d\n", BufferGetBlockNumber(*buf));
|
||||
#endif
|
||||
*page = BufferGetPage(*buf);
|
||||
@@ -962,7 +962,7 @@ _bt_buildadd(Relation index, void *pstate, BTItem bti, int flags)
|
||||
if (PageAddItem(npage, PageGetItem(opage, ii),
|
||||
ii->lp_len, n, LP_USED) == InvalidOffsetNumber)
|
||||
elog(FATAL, "btree: failed to add item to the page in _bt_sort (1)");
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
#if defined(FASTBUILD_DEBUG) && defined(FASTBUILD_MERGE)
|
||||
{
|
||||
bool isnull;
|
||||
@@ -1048,7 +1048,7 @@ _bt_buildadd(Relation index, void *pstate, BTItem bti, int flags)
|
||||
off = OffsetNumberNext(last_off);
|
||||
if (PageAddItem(npage, (Item) bti, btisz, off, LP_USED) == InvalidOffsetNumber)
|
||||
elog(FATAL, "btree: failed to add item to the page in _bt_sort (2)");
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
#if defined(FASTBUILD_DEBUG) && defined(FASTBUILD_MERGE)
|
||||
{
|
||||
bool isnull;
|
||||
@@ -1382,7 +1382,7 @@ _bt_upperbuild(Relation index)
|
||||
/* for each page... */
|
||||
do
|
||||
{
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
printf("\t\tblk=%d\n", blk);
|
||||
#endif
|
||||
rbuf = _bt_getbuf(index, blk, BT_READ);
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.23 1999/02/13 23:14:46 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.24 1999/02/21 03:48:28 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
* This file contains the high level access-method interface to the
|
||||
@@ -300,7 +300,7 @@ TransactionLogUpdate(TransactionId transactionId, /* trans id to update */
|
||||
static void
|
||||
TransRecover(Relation logRelation)
|
||||
{
|
||||
#if 0
|
||||
#ifdef NOT_USED
|
||||
/* ----------------
|
||||
* first get the last recorded transaction in the log.
|
||||
* ----------------
|
||||
|
Reference in New Issue
Block a user