Fixed the akquisition of a database-connection, if one is needed
[hibernate4-maven-plugin] / src / it / hibernate-lob-converter-bug / create.sql
1 create sequence hibernate_sequence start with 1 increment by 1;
2
3     create table MyEntity (
4         id integer not null,
5         status blob,
6         primary key (id)
7     );