|
After upgrade from 5.0.0.CR3 to 5.0.0.CR4 following exception is thrown on attempt to insert new data: MySQLSyntaxErrorException: Table 'db_name.hibernate_sequence' doesn't exist
I use MySQL with AUTO_INCREMENT for primary keys. And I use Spring Data JPA, which in turn use following declaration of id:
@Id @GeneratedValue private PK id;
Seems like AUTO generation strategy of @GeneratedValue don't work now.
|