ddl from schema export is not correctly formatted
--------------------------------------------------
Key: HHH-6482
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-6482
Project: Hibernate Core
Issue Type: Improvement
Components: core
Affects Versions: 4.0.0.Beta4
Reporter: Strong Liu
Assignee: Strong Liu
Fix For: 4.0.0.next
if we have *hibernate.format_sql true* and also *org.hibernate.SQL debug*, the ddl output
will like this
{quote}
Hibernate:
create table Bar ( details varchar(255), BAR_ID bigint not null,
primary key (BAR_ID), unique (BAR_ID) )
{quote}
but we want it this
{quote}
Hibernate:
create table hibernate_sequences (
sequence_name varchar(255) not null ,
next_val bigint,
primary key ( sequence_name )
)
{quote}
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira