You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bo...@apache.org on 2006/11/21 01:29:38 UTC

svn commit: r477435 - /incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java

Author: boisvert
Date: Mon Nov 20 16:29:37 2006
New Revision: 477435

URL: http://svn.apache.org/viewvc?view=rev&rev=477435
Log:
Rename ACTIVE column to ACTIVE_ to support Firbird database where ACTIVE is a reserved word
(and quoting identifiers doesn't seem to be supported everywhere in Hibernate)

Modified:
    incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java

Modified: incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java?view=diff&rev=477435&r1=477434&r2=477435
==============================================================================
--- incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java (original)
+++ incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/hobj/HProcessConf.java Mon Nov 20 16:29:37 2006
@@ -151,7 +151,7 @@
     /**
      * The process status.
      * @hibernate.property
-     *    column="ACTIVE"
+     *    column="ACTIVE_"
      */
     public boolean isActive() {
         return _active;