You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2009/07/31 20:38:08 UTC

svn commit: r799685 - /openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java

Author: mikedd
Date: Fri Jul 31 18:38:07 2009
New Revision: 799685

URL: http://svn.apache.org/viewvc?rev=799685&view=rev
Log:
OPENJPA-594:
Setting Informix schema separator to ':'
Submitted By: Jody Grassel based on patch by Dinkar Rao

Modified:
    openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java

Modified: openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java
URL: http://svn.apache.org/viewvc/openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java?rev=799685&r1=799684&r2=799685&view=diff
==============================================================================
--- openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java (original)
+++ openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/InformixDictionary.java Fri Jul 31 18:38:07 2009
@@ -96,9 +96,6 @@
         maxIndexNameLength = 18;
         maxConstraintNameLength = 18;
 
-        // Informix uses a non-standard ":" to separate schema and table names
-        catalogSeparator = ":";
-
         // informix supports "CLOB" type, but any attempt to insert
         // into them raises: "java.sql.SQLException: Can't convert fromnull"
         useGetStringForClobs = true;