Postgress 版本:10.4
表列名称/类型:updated_at timestamp(6) with time zone
SQL查询:
final String SELECT_PAYMENT_INFO_QUERY =
"SELECT i.code, p.*
FROM information i
INNER JOIN product p ON i.ref = p.information_ref
WHERE p.reference = :reference AND p.type = :paymentMethodType AND p.error_state = :errorState
AND p.updated_at IS NOT NULL AND p.updated_at >= :queryFromTime
ORDER BY p.updated_at ASC
FETCH FIRST :numberOfRows ROWS ONLY"
Java方法:
public List<ProductInformationDTO> retrieveProductInformations(
ZonedDateTime fetchFromTime, int noOfRecords)
{
try
{
return dbi.inTransaction((HandleCallback<List<ProductInformationDTO>, Exception>) handle ->
{
final List<ProductInformationDTO> productInfos = handle.createQuery(SELECT_PAYMENT_INFO_QUERY)
.bind("reference", "ABCD")
.bind("paymentMethodType", "CREDIT_CARD")
.bind("errorState", "COMPLETED_WITH_ERRORS")
.bind("queryFromTime", fetchFromTime.toOffsetDateTime())
.bind("numberOfRows", noOfRecords)
.map(productInfoMapper)
.list();
return productInfos;
});
}
catch (Exception e)
{
LOG.error("Failed to complete the retrieve operation.", e);
throw new TransactionException(e);
}
}
此查询和方法适用于 H2 数据库。但是,当使用 Postgress 数据库对其进行测试时,出现以下异常
org.jdbi.v3.core.statement.UnableToExecuteStatementException:org.postgresql.util.PSQLException:错误:“$ 5”或附近的语法错误位置:234 [statement:“SELECT i.code,p.* FROM information i INNER JOIN产品 p ON i.ref = p.information_ref WHERE p.reference = :reference AND p.type = :paymentMethodType AND p.error_state = :errorState AND p.updated_at 不为空且 p.updated_at >= :queryFromTime ORDER BY p。 updated_at ASC FETCH FIRST :numberOfRows ROWS ONLY",参数:{位置:{},命名:{queryFromTime:2021-04-15T16:28:20.365795+12:00,numberOfRows:10,paymentMethodType:CREDIT_CARD,reference:ABCD,errorState :COMPLETED_WITH_ERRORS}, finder:[]}] at org.jdbi.v3.core.statement.SqlStatement.internalExecute(SqlStatement.java:1794) at org.jdbi.v3.core.result.ResultProducers.lambda$getResultSet$2(ResultProducers .java:64) 在 org.jdbi.v3.core.result.ResultIterable.stream(ResultIterable.java:228) 在 org.jdbi.v3.core.result.ResultIterable.lambda$of$0(ResultIterable.java:54) 在 org. jdbi.v3.core.result.ResultIterable.collect(ResultIterable.java:284) 在 org.jdbi.v3.core.result.ResultIterable.list(ResultIterable.java:273) 在 au.com.abcd.products.v2。 database.store.dao.ProductsDaoImpl.lambda$retrieveProductInformations$6(ProductsDaoImpl.java:260) at org.jdbi.v3.core.Handle.inTransaction(Handle.java:424) at org.jdbi.v3.core.Jdbi.lambda $inTransaction$4(Jdbi.java:375) 在 org.jdbi.v3.core.Jdbi.withHandle(Jdbi.java:341) 在 org.jdbi.v3.core.Jdbi.inTransaction(Jdbi.java:375) 在 au .com.abcd.products.v2.database.store.dao.ProductsDaoImpl.retrievePaymentIntents(IntentDaoImpl.java:251) 在 au.com.abcd.products.v2.business.services.complete.ProductServiceImpl。reProcessProducts(ProductServiceImpl.java:114) at au.com.abcd.products.v2.business.background.TransactionReProcessManager.lambda$reProcessProducts$1(TransactionReProcessManager.java:81) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128) 在 java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) 在 java.base/java.lang.Thread.run(Thread.java:829) 引起作者:org.postgresql.util.PSQLException:错误:“$5”处或附近的语法错误位置:org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2532) 处 org.postgresql.core.v3 处的 234 .QueryExecutorImpl.processResults(QueryExecutorImpl.java:2267) 在 org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:312) 在 org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:448)在org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:153)在org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java) :142) 在 java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 在 java.base/jdk.internal 的 java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) .reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.apache.tomcat.jdbc.pool.StatementFacade$StatementProxy.invoke (StatementFacade.java:114) 在 com.sun.proxy.$Proxy120.execute(Unknown Source) 在 org.jdbi.v3.core.statement.SqlLoggerUtil.wrap(SqlLoggerUtil.java:31) 在 org.jdbi.v3。 core.statement.SqlStatement。internalExecute(SqlStatement.java:1786) ...省略了16个常用框架
我也尝试了 fetchFromTime.toLocalDateTime() 但得到了同样的异常。