mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
@ -718,10 +718,12 @@ gistgettuple(PG_FUNCTION_ARGS)
|
||||
/* find and process the next index page */
|
||||
do
|
||||
{
|
||||
GISTSearchItem *item;
|
||||
|
||||
if ((so->curBlkno != InvalidBlockNumber) && (so->numKilled > 0))
|
||||
gistkillitems(scan);
|
||||
|
||||
GISTSearchItem *item = getNextGISTSearchItem(so);
|
||||
item = getNextGISTSearchItem(so);
|
||||
|
||||
if (!item)
|
||||
PG_RETURN_BOOL(false);
|
||||
|
Reference in New Issue
Block a user