Commit cef27ae0 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix compiler warning

A variable was unused in non-assert builds.  Simplify the code to
avoid the issue.
Reported-by: default avatarErik Rijkers <er@xs4all.nl>
parent ab3e4fbd
...@@ -788,7 +788,6 @@ apply_handle_update_internal(ResultRelInfo *relinfo, ...@@ -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, ...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment