-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Match Search, The order of results is inconsistent with the order of Return #4049
Comments
必须加上LIMIT才能复现当前Bug |
Thanks. Is is OK if executing nGQL directly on nebula console without Studio? |
Hi @jianan0982 , it might be a bug caused by a bad optimization rule. nebula-graph v2.6.0 has fixed this bug. You could try to upgrade to v2.6.0. |
Describe the bug (required)
Nebula-Graph Version: 2.5
Command
MATCH p=(v:owl_Class{name:"畜肉类"})<-[e1]-(v2:owl_NamedIndividual)-[e2:relation{name:"有标签"}]->(
v3:owl_NamedIndividual{name:"高蛋白"}) RETURN v,e1,v2,e2,v3,p limit 20
Correct Result
Command
MATCH p=(v:owl_Class{name:"畜肉类"})<-[e1]-(v2:owl_NamedIndividual)-[e2:relation{name:"有标签"}]->(
v3:owl_NamedIndividual{name:"高蛋白"}) RETURN e2,v3,p,v,e1,v2 limit 20
ERROR Result
The text was updated successfully, but these errors were encountered: