mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Silence compiler warning.
Not all compilers understand that elog(ERROR, ...) never returns.
This commit is contained in:
parent
b152c6cd0d
commit
0fdb2f7d7c
@ -598,7 +598,10 @@ ginPlaceToPage(GinBtree btree, GinBtreeStack *stack,
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
elog(ERROR, "unknown return code from GIN placeToPage method: %d", rc);
|
||||
return false; /* keep compiler quiet */
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user