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
/* schema */
create class User extends V;
create property User.state Short;
/* data*/
create vertex User set state =1;
create vertex User set state =1;
create vertex User set state =2;
queries:
selectfrom User where state in [1]
selectfrom User where state in1
Expected/Actual behavior
These queries should return two records, but instead, it returns nothing.
It should be noted that when I use Integer instead of Short, the queries are work as expected.
Thanks
The text was updated successfully, but these errors were encountered:
OrientDB Version: 2.2.24
Java Version: 1.8
OS: Linux, MacOS
I want to use
IN
operator to filter records.Steps to reproduce
queries:
Expected/Actual behavior
These queries should return two records, but instead, it returns nothing.
It should be noted that when I use
Integer
instead ofShort
, the queries are work as expected.Thanks
The text was updated successfully, but these errors were encountered: