是否可以使用Java Criteria API使用Postgres特定的@>运算符(女巫表示“包含”)来实现“从句”?
原始SQL是:
select * from rent_seasons rs where rs.period @> date '2019-07-16'
表格:
create table rent_seasons
(
id integer not null,
name varchar(191),
period daterange not null
);
相关的Java Criteria API代码是什么?