Hi,
Query 1:
select META().id from books
USE INDEX (books_one USING FTS)
where _class = 'com.org.One’
and any f in field4 satisfies f = ‘abc’ end
Query 2:
select META().id from books
USE INDEX (books_one USING FTS)
where _class = 'com.org.One’
and any f in field4 satisfies f IN [‘abc’, ‘def’] end
Query 1 works okay but query 2 fails. How to fix query 2?