mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +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:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planmain.c,v 1.33 1999/02/15 03:22:12 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planmain.c,v 1.34 1999/02/21 03:48:49 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -259,7 +259,7 @@ subplanner(Query *root,
|
||||
|
||||
final_rel = make_one_rel(root, root->base_rel_list);
|
||||
|
||||
#if 0 /* fix xfunc */
|
||||
#ifdef NOT_USED /* fix xfunc */
|
||||
|
||||
/*
|
||||
* Perform Predicate Migration on each path, to optimize and correctly
|
||||
@@ -443,7 +443,7 @@ make_groupPlan(List **tlist,
|
||||
|
||||
if (IsA(expr, Var))
|
||||
{
|
||||
#if 0 /* subplanVar->resdom->resno expected to
|
||||
#ifdef NOT_USED /* subplanVar->resdom->resno expected to
|
||||
* be = te->resdom->resno */
|
||||
TargetEntry *subplanVar;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user