Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv19142/cirrus/hibernate/tools
Modified Files:
SchemaExport.java
Log Message:
fix for ms sql server + class with no properties + native id
Index: SchemaExport.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/tools/SchemaExport.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** SchemaExport.java 27 Nov 2002 13:47:34 -0000 1.11
--- SchemaExport.java 27 Nov 2002 16:42:57 -0000 1.12
***************
*** 203,207 ****
}
result.append(tok);
! if ( ",".equals(tok) && depth==1 ) result.append("\n ");
if ( "(".equals(tok) ) {
depth++;
--- 203,207 ----
}
result.append(tok);
! if ( ",".equals(tok) && depth==1 ) result.append("\n ");
if ( "(".equals(tok) ) {
depth++;
|