mirror of https://github.com/apache/openjpa.git
OPENJPA-1939: Increase max index length for DB2 v9 and later
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.1.x@1071016 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fe7601ce39
commit
1ce3034b67
|
@ -343,8 +343,11 @@ public class DB2Dictionary
|
|||
supportsLockingWithInnerJoin = true;
|
||||
supportsLockingWithOuterJoin = true;
|
||||
forUpdateClause = "WITH RR USE AND KEEP UPDATE LOCKS";
|
||||
if (maj >=9)
|
||||
|
||||
if (maj >=9) {
|
||||
maxIndexNameLength=128;
|
||||
supportsXMLColumn = true;
|
||||
}
|
||||
}
|
||||
|
||||
// platform specific settings
|
||||
|
|
Loading…
Reference in New Issue