Commit 67030eec authored by Tom Lane's avatar Tom Lane

Suppress some gcc warnings.

parent 2610a1fd
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.1 2006/05/02 11:28:54 teodor Exp $ * $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.2 2006/05/02 15:48:11 tgl Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -116,7 +116,7 @@ entryIsMoveRight(GinBtree btree, Page page) { ...@@ -116,7 +116,7 @@ entryIsMoveRight(GinBtree btree, Page page) {
static BlockNumber static BlockNumber
entryLocateEntry(GinBtree btree, GinBtreeStack *stack) { entryLocateEntry(GinBtree btree, GinBtreeStack *stack) {
OffsetNumber low, high, maxoff; OffsetNumber low, high, maxoff;
IndexTuple itup; IndexTuple itup = NULL;
int result; int result;
Page page = BufferGetPage( stack->buffer ); Page page = BufferGetPage( stack->buffer );
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginscan.c,v 1.1 2006/05/02 11:28:54 teodor Exp $ * $PostgreSQL: pgsql/src/backend/access/gin/ginscan.c,v 1.2 2006/05/02 15:48:11 tgl Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -66,6 +66,8 @@ fillScanKey( GinState *ginstate, GinScanKey key, Datum query, ...@@ -66,6 +66,8 @@ fillScanKey( GinState *ginstate, GinScanKey key, Datum query,
} }
} }
#ifdef NOT_USED
static void static void
resetScanKeys(GinScanKey keys, uint32 nkeys) { resetScanKeys(GinScanKey keys, uint32 nkeys) {
uint32 i, j; uint32 i, j;
...@@ -92,6 +94,8 @@ resetScanKeys(GinScanKey keys, uint32 nkeys) { ...@@ -92,6 +94,8 @@ resetScanKeys(GinScanKey keys, uint32 nkeys) {
} }
} }
#endif
static void static void
freeScanKeys(GinScanKey keys, uint32 nkeys, bool removeRes) { freeScanKeys(GinScanKey keys, uint32 nkeys, bool removeRes) {
uint32 i, j; uint32 i, j;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment