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
looks like return all the records that have test field
Steps to reproduce
create 4 records
create vertex v content {"name": "jack", "age": 22}
create vertex v content {"name": "rose", "age": 22, "test": [[]]}
create vertex v content {"name": "pete", "age": 22, "test": [{}]}
create vertex v content {"name": "david", "age": 22, "test": ["hello"]}
select record
select from v where test contains []
return three record ( rose, pete and david ), looks like return all the records that have `test` field
select from v where test contains {}
return one record and looks work fine.
Thanks reading
The text was updated successfully, but these errors were encountered:
OrientDB Version: 3.0.10
Java Version: 1.8.0_102
OS: centos 6.8
Expected behavior
return record which
test
value is[[]]
Actual behavior
looks like return all the records that have
test
fieldSteps to reproduce
select record
Thanks reading
The text was updated successfully, but these errors were encountered: