1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Make functions static or ifdef NOT_USED. Prevent pg_version creation.

This commit is contained in:
Bruce Momjian
1998-10-08 18:30:52 +00:00
parent 0a1c2805b3
commit 173c555948
52 changed files with 173 additions and 164 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.22 1998/09/23 04:22:10 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.23 1998/10/08 18:29:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -423,6 +423,7 @@ find_inheritance_children(Oid inhparent)
return list;
}
#ifdef NOT_USED
/*
* VersionGetParents--
*
@@ -461,6 +462,8 @@ VersionGetParents(Oid verrelid)
heap_close(relation);
return list;
}
#endif
/*****************************************************************************
*