mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 00:01:20 -04:00
Fix compiler warning
A variable was unused in non-assert builds. Simplify the code to avoid the issue. Reported-by: Erik Rijkers <er@xs4all.nl>
This commit is contained in:
parent
ab3e4fbd54
commit
cef27ae01a
@ -788,7 +788,6 @@ apply_handle_update_internal(ResultRelInfo *relinfo,
|
|||||||
LogicalRepRelMapEntry *relmapentry)
|
LogicalRepRelMapEntry *relmapentry)
|
||||||
{
|
{
|
||||||
Relation localrel = relinfo->ri_RelationDesc;
|
Relation localrel = relinfo->ri_RelationDesc;
|
||||||
LogicalRepRelation *remoterel = &relmapentry->remoterel;
|
|
||||||
Oid idxoid;
|
Oid idxoid;
|
||||||
EPQState epqstate;
|
EPQState epqstate;
|
||||||
TupleTableSlot *localslot;
|
TupleTableSlot *localslot;
|
||||||
@ -806,7 +805,7 @@ apply_handle_update_internal(ResultRelInfo *relinfo,
|
|||||||
*/
|
*/
|
||||||
idxoid = GetRelationIdentityOrPK(localrel);
|
idxoid = GetRelationIdentityOrPK(localrel);
|
||||||
Assert(OidIsValid(idxoid) ||
|
Assert(OidIsValid(idxoid) ||
|
||||||
(remoterel->replident == REPLICA_IDENTITY_FULL));
|
(relmapentry->remoterel.replident == REPLICA_IDENTITY_FULL));
|
||||||
|
|
||||||
if (OidIsValid(idxoid))
|
if (OidIsValid(idxoid))
|
||||||
found = RelationFindReplTupleByIndex(localrel, idxoid,
|
found = RelationFindReplTupleByIndex(localrel, idxoid,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user