[hibernate-dev] SchemaExport adds engine=MyISAM to all create table statements.

2017-04-02 Thread Petar Tahchiev
Hey guys, I've been using Hibernate's SchemaExport tool (5.1.x) for a long time it has always created an sql script with create-table statements like this: create table abstract_modifiable_entity ( id bigint not null, code varchar(255) not null, created_by varchar(255)

Re: [hibernate-dev] SchemaExport adds engine=MyISAM to all create table statements.

2017-04-02 Thread Vlad Mihalcea
Hi Petar, It must be a bug. I changed the way storage info is resolved, and it might be that the Schema Exporter does not take that into consideration. Please open an issue and provide a replicating tests case. Thanks, Vlad On Sun, Apr 2, 2017 at 3:59 PM, Petar Tahchiev wrote: > Hey guys, > >

Re: [hibernate-dev] SchemaExport adds engine=MyISAM to all create table statements.

2017-04-02 Thread Petar Tahchiev
Thanks Vlad, here's the issue: https://hibernate.atlassian.net/browse/HHH-11610 and here's the test-case: https://github.com/ptahchiev/HHH-11610/ 2017-04-02 16:31 GMT+03:00 Vlad Mihalcea : > Hi Petar, > > It must be a bug. I changed the way storage info is resolved, and it might > be that the S