Я получил проект Spring Boot, и мне нужно обновить версию Hibernate.Старая версия:
compile('org.hibernate:hibernate-java8:5.0.12.Final')
новая версия:
compile('org.hibernate:hibernate-java8:5.2.3.Final')
Теперь я получаю следующее исключение:
Hexadecimal string with odd number of characters: "2018-11-13 10:28:26.053" SQL statement:
update myColumn set started_by=null, started_expires=null where
started_expires<CURRENT_TIMESTAMP [90003-197]
Запрос такой:
@Repository
public interface StartedRepository extends CrudRepository<StartedEntity, String> {
@Transactional
@Modifying
@Query("UPDATE Started R SET R.startedBy = null, R.startedExpires = null WHERE R.startedExpires < CURRENT_TIMESTAMP ")
int removeAllStarted();
Кто-нибудь знает, что проблема в этом?
Заранее спасибо