Skip to content

Commit

Permalink
bug fix (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybz1013 authored Nov 7, 2024
1 parent 8e5f019 commit 197ed46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public <RELATIONSHIP extends RecordTemplate> void removeRelationshipsV2(@Nonnull
for (RELATIONSHIP relationship : relationships) {
_server.createSqlUpdate(SQLStatementUtils.deleteLocalRelationshipSQL(SQLSchemaUtils.getRelationshipTableName(relationship),
RemovalOption.REMOVE_ALL_EDGES_FROM_SOURCE_TO_DESTINATION))
.setParameter(CommonColumnName.SOURCE, GraphUtils.getSourceUrnBasedOnRelationshipVersion(relationship, sourceUrn))
.setParameter(CommonColumnName.SOURCE, GraphUtils.getSourceUrnBasedOnRelationshipVersion(relationship, sourceUrn).toString())
.setParameter(CommonColumnName.DESTINATION, getDestinationUrnFromRelationship(relationship).toString())
.execute();
}
Expand Down

0 comments on commit 197ed46

Please sign in to comment.