JDBI 无法将 PGInterval 绑定到 PostgreSQL INTERVAL

JDBI can't bind PGInterval to PostgreSQL INTERVAL

尝试使用 JDBI 在 PostgreSQL 中更新或插入包含 INTERVAL 的 table 时,出现以下错误: org.jdbi.v3.core.statement.UnableToCreateStatementException: No argument factory registered for '1 years 0 mons 0 days 0 hours 0 mins 0.0 secs' of qualified type org.postgresql.util.PGInterval [...]

最小可重现示例:

CREATE TABLE testing (i INTERVAL);
Jdbi.create(PGSimpleDataSource().apply {
        setURL([connection string goes here])
    }).withHandle<Int, SQLException> { handle: Handle ->
        handle.createUpdate("INSERT INTO testing(i) VALUES (:interval)")
                .bind("interval", PGInterval(1, 0, 0, 0, 0, 0.0))
                .execute()
    }

我尝试将它作为字符串插入,因为查询接受 'P1Y',但这给了我 ERROR: column "i" is of type interval but expression is of type character varying,如果第一种方法有效,这将有意义。

似乎只有 PGIntervals 成为预期的工作类型才有意义,因为从结果集中获取间隔时,会返回 PGInterval。

虽然我有点怀疑它是否重要,但我正在使用:

我认为您应该使用 PostgreSQL JDBI Plugin 来处理 PostgreSQL 特定类型。