18 lines
1.7 KiB
Plaintext
Executable File
18 lines
1.7 KiB
Plaintext
Executable File
# Same TestDbWidget mapping, actual create table/sequence DDL captured per database
|
|
# (H2 plain, H2 MODE=PostgreSQL, H2 MODE=Oracle, HSQLDB, Derby)
|
|
|
|
Hibernate: create sequence TestDbWidget_SEQ start with 1 increment by 50
|
|
Hibernate: create table TestDbWidget (active boolean not null, "order" integer, sku varchar(5), id bigint not null, description clob, primary key (id))
|
|
23:16:46.378 [main] INFO DEMO -- db=H2 -> resolved dialect = org.hibernate.dialect.H2Dialect
|
|
Hibernate: create sequence TestDbWidget_SEQ start with 1 increment by 50
|
|
Hibernate: create table TestDbWidget (active boolean not null, "order" integer, sku varchar(5), id bigint not null, description clob, primary key (id))
|
|
23:16:47.094 [main] INFO DEMO -- db=DERBY -> resolved dialect = org.hibernate.community.dialect.DerbyDialect
|
|
Hibernate: create sequence TestDbWidget_SEQ start with 1 increment by 50
|
|
Hibernate: create table TestDbWidget (active boolean not null, "order" integer, sku varchar(5), id bigint not null, description clob, primary key (id))
|
|
23:16:47.175 [main] INFO DEMO -- db=H2_POSTGRES_MODE -> resolved dialect = org.hibernate.dialect.H2Dialect
|
|
Hibernate: create sequence TestDbWidget_SEQ start with 1 increment by 50
|
|
Hibernate: create table TestDbWidget (active boolean not null, "order" integer, sku varchar(5), id bigint not null, description clob, primary key (id))
|
|
23:16:47.409 [main] INFO DEMO -- db=HSQLDB -> resolved dialect = org.hibernate.dialect.HSQLDialect
|
|
Hibernate: create sequence TestDbWidget_SEQ start with 1 increment by 50
|
|
Hibernate: create table TestDbWidget (active boolean not null, "order" integer, sku varchar(5), id bigint not null, description clob, primary key (id))
|
|
23:16:47.458 [main] INFO DEMO -- db=H2_ORACLE_MODE -> resolved dialect = org.hibernate.dialect.H2Dialect |