Skip to content
Snippets Groups Projects
Unverified Commit 1e5f4df0 authored by jimingquan's avatar jimingquan Committed by GitHub
Browse files

fix insert ci sometimes fail (#993)


Co-authored-by: default avatarYee <2520865+yixinglu@users.noreply.github.com>
parent 7b4b6e41
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ Feature: Insert vertex and edge with if not exists
| VertexID | age |
| "Conan" | 40 |
# insert edge
When executing query:
When try to execute query:
"""
INSERT EDGE like(likeness) VALUES "Tom"->"Conan":(87)
"""
......@@ -117,7 +117,7 @@ Feature: Insert vertex and edge with if not exists
| like | src | dst |
| 100 | "Tom" | "Conan" |
# insert multi vertex multi tags
When executing query:
When try to execute query:
"""
INSERT VERTEX IF NOT EXISTS
person(name, age),
......@@ -238,7 +238,7 @@ Feature: Insert vertex and edge with if not exists
| VertexID | age |
| "Tom" | 2 |
# check insert edge with default props
When executing query:
When try to execute query:
"""
INSERT EDGE like(likeness) VALUES "Tom"->"Conan":(100)
"""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment