我有一个实体,其属性类型为java.time.Instant。
@ApiModelProperty(required = false)
private Instant date;
我正在使用PostgreSQL,并且此列已转换为 bytea 。
休眠模式在控制台中显示如下查询:
select mytable_.id as id1_1_, mytable_.date as date2_1_
from myschema.mytable mytable_
where mytable_.date between ? and ?
我的参数是'2018-07-01T09:41:51.631Z'和'2018-07-03T09:41:51.631Z'。
在pgAdmin中,我想知道如何转换bytea(日期列)来测试我的查询。