-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
) Co-authored-by: Cheng Xuntao <[email protected]>
- Loading branch information
1 parent
c48cbd1
commit 5617371
Showing
3 changed files
with
38 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (c) 2022 vesoft inc. All rights reserved. | ||
# | ||
# This source code is licensed under Apache 2.0 License. | ||
Feature: FixIterCrash | ||
|
||
Scenario: Fix GetNeighborsIter Crash | ||
Given an empty graph | ||
And having executed: | ||
""" | ||
CREATE SPACE nba_FixIterCrash as nba | ||
""" | ||
And wait 6 seconds | ||
And having executed: | ||
""" | ||
USE nba_FixIterCrash | ||
""" | ||
When executing query: | ||
""" | ||
GO from 'Tim Duncan' OVER serve YIELD serve._src AS id | | ||
GET SUBGRAPH WITH PROP FROM $-.id | ||
YIELD vertices as nodes, edges as relationships | ||
""" | ||
Then the execution should be successful |