[jboss-cvs] JBossAS SVN: r61996 - branches/Branch_4_2/server/src/resources/uuid-key-generator/META-INF.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 2 15:20:26 EDT 2007


Author: rrajesh
Date: 2007-04-02 15:20:26 -0400 (Mon, 02 Apr 2007)
New Revision: 61996

Modified:
   branches/Branch_4_2/server/src/resources/uuid-key-generator/META-INF/jboss-service.xml
Log:
JBAS-4240 Wrap the SQL in a single line for DB2 7.2

Modified: branches/Branch_4_2/server/src/resources/uuid-key-generator/META-INF/jboss-service.xml
===================================================================
--- branches/Branch_4_2/server/src/resources/uuid-key-generator/META-INF/jboss-service.xml	2007-04-02 19:19:36 UTC (rev 61995)
+++ branches/Branch_4_2/server/src/resources/uuid-key-generator/META-INF/jboss-service.xml	2007-04-02 19:20:26 UTC (rev 61996)
@@ -35,11 +35,7 @@
 
      <!-- Create table DDL -->
      <attribute name="CreateTableDdl">
-        create table HILOSEQUENCES (
-           SEQUENCENAME varchar(50) not null,
-           HIGHVALUES integer not null,
-           constraint hilo_pk primary key (SEQUENCENAME)
-        )
+        create table HILOSEQUENCES (SEQUENCENAME varchar(50) not null, HIGHVALUES integer not null, constraint hilo_pk primary key (SEQUENCENAME))
      </attribute>
 
      <!-- Uncomment to make it cluster-safe: Select current Hi value query (FOR UPDATE is recommended)




More information about the jboss-cvs-commits mailing list