mirror of https://github.com/apache/openjpa.git
Fixed default type for binaryTypeName, varbinaryTypeName, and longVarbinaryTypeName to be "BLOB" (rather than "VARBINARY", which does not exist as a type for Oracle).
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@447558 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ba388d243
commit
b7aa94749e
|
@ -135,6 +135,9 @@ public class OracleDictionary
|
|||
smallintTypeName = "NUMBER{0}";
|
||||
tinyintTypeName = "NUMBER{0}";
|
||||
longVarcharTypeName = "LONG";
|
||||
binaryTypeName = "BLOB";
|
||||
varbinaryTypeName = "BLOB";
|
||||
longVarbinaryTypeName = "BLOB";
|
||||
timeTypeName = "DATE";
|
||||
varcharTypeName = "VARCHAR2{0}";
|
||||
fixedSizeTypeNameSet.addAll(Arrays.asList(new String[]{
|
||||
|
|
Loading…
Reference in New Issue