mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Suppress compiler warnings.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.131 2000/12/08 06:17:57 inoue Exp $
|
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.132 2000/12/09 20:31:43 tgl Exp $
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* INTERFACE ROUTINES
|
* INTERFACE ROUTINES
|
||||||
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "access/genam.h"
|
#include "access/genam.h"
|
||||||
#include "access/heapam.h"
|
#include "access/heapam.h"
|
||||||
@ -1513,7 +1514,7 @@ setNewRelfilenode(Relation relation)
|
|||||||
Oid newrelfilenode;
|
Oid newrelfilenode;
|
||||||
bool in_place_update = false;
|
bool in_place_update = false;
|
||||||
HeapTupleData lockTupleData;
|
HeapTupleData lockTupleData;
|
||||||
HeapTuple classTuple;
|
HeapTuple classTuple = NULL;
|
||||||
Buffer buffer;
|
Buffer buffer;
|
||||||
RelationData workrel;
|
RelationData workrel;
|
||||||
|
|
||||||
|
3
src/backend/utils/cache/relcache.c
vendored
3
src/backend/utils/cache/relcache.c
vendored
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.119 2000/12/08 06:17:56 inoue Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.120 2000/12/09 20:32:44 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -253,7 +253,6 @@ static void RelationClearRelation(Relation relation, bool rebuildIt);
|
|||||||
#ifdef ENABLE_REINDEX_NAILED_RELATIONS
|
#ifdef ENABLE_REINDEX_NAILED_RELATIONS
|
||||||
static void RelationReloadClassinfo(Relation relation);
|
static void RelationReloadClassinfo(Relation relation);
|
||||||
#endif /* ENABLE_REINDEX_NAILED_RELATIONS */
|
#endif /* ENABLE_REINDEX_NAILED_RELATIONS */
|
||||||
static void RelationResetRelation(Relation relation, bool rebuildIt);
|
|
||||||
static void RelationFlushRelation(Relation *relationPtr,
|
static void RelationFlushRelation(Relation *relationPtr,
|
||||||
int skipLocalRelations);
|
int skipLocalRelations);
|
||||||
static Relation RelationNameCacheGetRelation(const char *relationName);
|
static Relation RelationNameCacheGetRelation(const char *relationName);
|
||||||
|
Reference in New Issue
Block a user