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)
When the property in the IN expression does not have an index binding to it, the query will cause a crash
The below query causes core dump if no index is created on player.age: LOOKUP ON player WHERE player.age IN [40, 20] AND player.name > "" YIELD id(vertex) as id, player.age
Your Environments (required)
v3.0.0
How To Reproduce(required)
Steps to reproduce the behavior:
drop index on player.age
execute lookup on player where player.name in ["Tim Duncan"] and player.name > '' YIELD player.name
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
Please check the FAQ documentation before raising an issue
Describe the bug (required)
When the property in the
IN
expression does not have an index binding to it, the query will cause a crashThe below query causes core dump if no index is created on
player.age
:LOOKUP ON player WHERE player.age IN [40, 20] AND player.name > "" YIELD id(vertex) as id, player.age
Your Environments (required)
v3.0.0
How To Reproduce(required)
Steps to reproduce the behavior:
player.age
lookup on player where player.name in ["Tim Duncan"] and player.name > '' YIELD player.name
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: