jrgemignani commented on code in PR #2251:
URL: https://github.com/apache/age/pull/2251#discussion_r2550988983
##########
src/backend/executor/cypher_set.c:
##########
@@ -141,7 +152,8 @@ static HeapTuple update_entity_tuple(ResultRelInfo
*resultRelInfo,
errmsg("tuple to be updated was already modified")));
}
- ExecCloseIndices(resultRelInfo);
+ if (close_indices)
Review Comment:
Our coding standard requires that all if/else blocks must have opening and
closing braces.
##########
src/backend/executor/cypher_set.c:
##########
@@ -160,7 +172,8 @@ static HeapTuple update_entity_tuple(ResultRelInfo
*resultRelInfo,
(update_indexes == TU_Summarizing));
}
- ExecCloseIndices(resultRelInfo);
+ if (close_indices)
Review Comment:
Our coding standard requires that all if/else blocks must have opening and
closing braces.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]