Fix oversight in 013ebc0a7b7ea9c1b1ab7a3d4dd75ea121ea8ba7 commit
Declaration of varibale inside ÓÝ×Õ
This commit is contained in:
parent
013ebc0a7b
commit
223936e226
@ -718,10 +718,12 @@ gistgettuple(PG_FUNCTION_ARGS)
|
|||||||
/* find and process the next index page */
|
/* find and process the next index page */
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
GISTSearchItem *item;
|
||||||
|
|
||||||
if ((so->curBlkno != InvalidBlockNumber) && (so->numKilled > 0))
|
if ((so->curBlkno != InvalidBlockNumber) && (so->numKilled > 0))
|
||||||
gistkillitems(scan);
|
gistkillitems(scan);
|
||||||
|
|
||||||
GISTSearchItem *item = getNextGISTSearchItem(so);
|
item = getNextGISTSearchItem(so);
|
||||||
|
|
||||||
if (!item)
|
if (!item)
|
||||||
PG_RETURN_BOOL(false);
|
PG_RETURN_BOOL(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user