JPA criteira api for '@>' function

15 views Asked by At

How to convert this query in JPA criteria api

SELECT * from conditions WHERE value @> '[6,6]'

@> means contains. More info: https://www.postgresql.org/docs/9.3/functions-range.html

My conditions table have value whose type is Range

Basically i am not able to get equivalent of @> in JPA criteria api

0

There are 0 answers