forked from apache/age
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix MERGE/SET github issue apache#235
Fixed github issue apache#235 for when MERGE and SET were used together. FX: MERGE (n:node {name: 'Jason'}) SET n.name = 'Lisa' RETURN n The issue is that the above command would cause a crash when the target of the MERGE command existed. Meaning, it found a matching tuple to return to the SET command. The tuple generated for that particular case was not being sent up to the SET command correctly, this was fixed. Added a regression test.
- Loading branch information
1 parent
fae55d2
commit 6fbdfa8
Showing
3 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters