-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow simple/async sessions to request data as needed
- Loading branch information
Gregory Woods
authored and
Gregory Woods
committed
Dec 13, 2019
1 parent
bc105be
commit d4708c5
Showing
5 changed files
with
233 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
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
19 changes: 19 additions & 0 deletions
19
driver/src/test/resources/streaming_records_v4_buffering.script
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
!: BOLT 4 | ||
!: AUTO RESET | ||
!: AUTO HELLO | ||
!: AUTO GOODBYE | ||
|
||
C: RUN "MATCH (n) RETURN n.name" {} {} | ||
PULL { "n": 2 } | ||
S: SUCCESS {"fields": ["n.name"]} | ||
RECORD ["Bob"] | ||
RECORD ["Alice"] | ||
SUCCESS {"has_more": true} | ||
C: PULL { "n": 2 } | ||
S: RECORD ["Tina"] | ||
RECORD ["Frank"] | ||
SUCCESS {"has_more": true} | ||
C: PULL { "n": 2 } | ||
S: RECORD ["Daisy"] | ||
RECORD ["Clive"] | ||
SUCCESS {} |