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
eval returns false even when condition should be true
Steps to reproduce
/* This works correctly. eval returns true */
select eval("'a' in info.example_list") from (
select @this:{
["a","b"] as example_list
} as info from V limit 1
)
/* If I add * to the inner projection suddenly eval returns 'false' */
select eval("'a' in info.example_list") from (
select *, @this:{
["a","b"] as example_list
} as info from V limit 1
)
Notes:
Tried this on versions 3.2.16 and 3.2.30 and both work fine. Not sure which version started the problem.
The text was updated successfully, but these errors were encountered:
OrientDB Version: 3.2.36
Java Version: "11.0.26"
OS: Ubuntu 24.04
Expected behavior
Calling eval should work properly
Actual behavior
eval returns false even when condition should be true
Steps to reproduce
Notes:
Tried this on versions 3.2.16 and 3.2.30 and both work fine. Not sure which version started the problem.
The text was updated successfully, but these errors were encountered: