[jbpm-commits] JBoss JBPM SVN: r4425 - in jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm: graph/log and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Apr 3 13:19:05 EDT 2009


Author: alex.guizar at jboss.com
Date: 2009-04-03 13:19:05 -0400 (Fri, 03 Apr 2009)
New Revision: 4425

Modified:
   jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/context/log/VariableLog.hbm.xml
   jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml
   jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.sybase.hbm.xml
   jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ProcessStateLog.hbm.xml
Log:
[JBPM-2094] fix duplicate key name 'FK_LOG_ACTION' -
some indexes were mistakenly named 'FK_*' instead of 'IDX_*'

Modified: jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/context/log/VariableLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/context/log/VariableLog.hbm.xml	2009-04-03 16:28:22 UTC (rev 4424)
+++ jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/context/log/VariableLog.hbm.xml	2009-04-03 17:19:05 UTC (rev 4425)
@@ -14,7 +14,7 @@
                  column="VARIABLEINSTANCE_" 
                  cascade="save-update" 
                  foreign-key="FK_LOG_VARINST"
-                 index="FK_LOG_VARINST" />
+                 index="IDX_LOG_VARINST" />
 
   </subclass>
 

Modified: jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml	2009-04-03 16:28:22 UTC (rev 4424)
+++ jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml	2009-04-03 17:19:05 UTC (rev 4425)
@@ -15,7 +15,7 @@
     <many-to-one name="action"
                  column="ACTION_"
                  foreign-key="FK_LOG_ACTION"
-                 index="FK_LOG_ACTION" />
+                 index="IDX_LOG_ACTION" />
   </subclass>
 
 </hibernate-mapping>

Modified: jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.sybase.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.sybase.hbm.xml	2009-04-03 16:28:22 UTC (rev 4424)
+++ jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.sybase.hbm.xml	2009-04-03 17:19:05 UTC (rev 4425)
@@ -15,7 +15,7 @@
     <many-to-one name="action"
                  column="ACTION_"
                  foreign-key="FK_LOG_ACTION"
-                 index="FK_LOG_ACTION" />
+                 index="IDX_LOG_ACTION" />
   </subclass>
 
 </hibernate-mapping>

Modified: jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ProcessStateLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ProcessStateLog.hbm.xml	2009-04-03 16:28:22 UTC (rev 4424)
+++ jbpm3/branches/jbpm-3.2.5.SP/modules/core/src/main/resources/org/jbpm/graph/log/ProcessStateLog.hbm.xml	2009-04-03 17:19:05 UTC (rev 4425)
@@ -11,8 +11,7 @@
             discriminator-value="Z">
 
     <many-to-one name="subProcessInstance"
-                 column="NEWLONGVALUE_"
-                 foreign-key="none" />
+                 column="NEWLONGVALUE_" />
   </subclass>
 
 </hibernate-mapping>




More information about the jbpm-commits mailing list