You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check the FAQ documentation before raising an issue
Describe the bug (required)
The query in Neo4j report error:
@neo4j> match (v)-[e*1..2]->() where v.id = 1 match p = (vv)-->()-[e]->() return p;
Type mismatch: e defined with conflicting type List<Relationship> (expected Relationship) (line 1, column 60 (offset: 59))
"match (v)-[e*1..2]->() where v.id = 1 match p = (vv)-->()-[e]->() return p"
e is a list of edges, the query engine will not be able to interpret the semantic of this query match p = (vv)-->()-[e]->() return p;, but Nebula executes this query and return list of unexplainable results:
Please check the FAQ documentation before raising an issue
Describe the bug (required)
The query in Neo4j report error:
e
is a list of edges, the query engine will not be able to interpret the semantic of this querymatch p = (vv)-->()-[e]->() return p;
, but Nebula executes this query and return list of unexplainable results:the execution plan:
plan.txt
Neo4j report error beacause
e
is a list so it cannot execute this querymatch p = (vv)-->()-[e]->() return p;
.but Nebula executes this query and return list of unexplainable results:
Your Environments (required)
uname -a
g++ --version
orclang++ --version
lscpu
a3ffc7d8
) 55c198dHow To Reproduce(required)
Steps to reproduce the behavior:
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: