1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Final optimizer cleanups.

This commit is contained in:
Bruce Momjian
1999-02-22 05:26:58 +00:00
parent 47dd11bdd0
commit 1ed5cbbfd8
16 changed files with 173 additions and 162 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/list.c,v 1.17 1999/02/13 23:15:57 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/list.c,v 1.18 1999/02/22 05:26:18 momjian Exp $
*
* NOTES
* XXX a few of the following functions are duplicated to handle
@@ -109,6 +109,7 @@ nconc(List *l1, List *l2)
}
#ifdef NOT_USED
List *
nreverse(List *list)
{
@@ -128,6 +129,7 @@ nreverse(List *list)
lnext(list) = lnext(rlist);
return list;
}
#endif
Value *
makeInteger(long i)
@@ -245,6 +247,7 @@ append(List *l1, List *l2)
return newlist;
}
#ifdef NOT_USED
/*
* below are for backwards compatibility
*/
@@ -266,6 +269,7 @@ intAppend(List *l1, List *l2)
lnext(p) = newlist2;
return newlist;
}
#endif
/*
* same