timedOutLockedCallsIdentifiers

timedOutLockedCallsIdentifiers

我正在尝试使用Spring Data JPA更新特定列表中的实体。但是,我收到了SQL语法异常。

这是方法:

@Modifying
@Query("UPDATE Call c set c.locationLocked = false, c.locationLockedBy = null, c.locationLockedOn = null WHERE c.callIdentifier IN :timedOutLockedCallsIdentifiers AND c.audit.retired = false")
int expireTimedOutLockedCalls(@Param("timedOutLockedCallsIdentifiers") List<String> timedOutLockedCallsIdentifiers);


这是根本原因:

Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near ")"

最佳答案

您正在查询的IN子句中传递空列表或空列表。

致电上述查询之前,请检查timedOutLockedCallsIdentifiers

07-24 15:54