我有一个具有 java.time.Instant 类型属性的实体。
@ApiModelProperty(required = false)
private Instant date;
我正在使用 PostgreSQL,此列已转换为bytea。
hibernate 在控制台中显示如下查询:
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(日期列)来测试我的查询。