-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(interactive): support
CaseWhen
in GIE runtime (#3868)
As titled. Support case when, e.g., ``` MATCH (post: POST) WITH post, CASE WHEN post.creationDate < 20120629020000000 AND post.creationDate >= 20120601000000000 THEN 1 ELSE 0 END AS valid, CASE WHEN 20120601000000000 > post.creationDate THEN 1 ELSE 0 END AS inValid RETURN post ``` Fixes #3736
- Loading branch information
1 parent
00735b7
commit 8bd72c3
Showing
3 changed files
with
159 additions
and
4 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