-
Notifications
You must be signed in to change notification settings - Fork 49
Closed
@alekbarszczewski
Description
create extension if not exists jsquery; drop table if exists contained_test; create table contained_test (data jsonb); insert into contained_test values ('{"id": 1}'), ('{"id": 2}'); select * from contained_test where data @@ 'id IN (1, 2)'::jsquery; -- works, returning both records select * from contained_test where data @@ 'id <@ [1, 2]'::jsquery; -- does not work, returning 0 rows
Using Jsquery 1.0 (compiled few days ago from master).
In readme it states that Jsquery supports "contained in" (<@) operator. Am I doing something wrong?
Metadata
Metadata
Assignees
Labels
No labels