mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Silence compiler warning.
Not all compilers understand that elog(ERROR, ...) never returns.
This commit is contained in:
@ -598,7 +598,10 @@ ginPlaceToPage(GinBtree btree, GinBtreeStack *stack,
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
elog(ERROR, "unknown return code from GIN placeToPage method: %d", rc);
|
elog(ERROR, "unknown return code from GIN placeToPage method: %d", rc);
|
||||||
|
return false; /* keep compiler quiet */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user