diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
commit | 8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch) | |
tree | f6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/include/executor/nodeMaterial.h | |
parent | 1efa3f42280fce080e47fc4491a809240cbe464a (diff) | |
download | postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.zip |
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.
Diffstat (limited to 'src/include/executor/nodeMaterial.h')
-rw-r--r-- | src/include/executor/nodeMaterial.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeMaterial.h b/src/include/executor/nodeMaterial.h index 26078fc1b06..fddc4d1edbe 100644 --- a/src/include/executor/nodeMaterial.h +++ b/src/include/executor/nodeMaterial.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeMaterial.h,v 1.9 1999/02/13 23:21:26 momjian Exp $ + * $Id: nodeMaterial.h,v 1.10 1999/02/21 03:49:44 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -23,7 +23,7 @@ extern int ExecCountSlotsMaterial(Material *node); extern void ExecEndMaterial(Material *node); extern void ExecMaterialReScan(Material *node, ExprContext *exprCtxt, Plan *parent); -#if 0 +#ifdef NOT_USED extern List ExecMaterialMarkPos(Material *node); extern void ExecMaterialRestrPos(Material *node); |