OPENJPA-240 Feature:Persistent field mapping support for XML column type.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@547837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
David J. Wisneski 2007-06-16 00:09:45 +00:00
parent a4e1584fe3
commit e0e176ab83
1 changed files with 2 additions and 2 deletions

View File

@ -1039,8 +1039,8 @@ public class AnnotationPersistenceMappingParser
DBDictionary dict = ((MappingRepository) getRepository())
.getDBDictionary();
if (dict.supportsXMLColumn)
// column maps to xml type
((Column) cols.get(i)).setTypeName(dict.xmlTypeName);
// column maps to xml type
((Column) cols.get(i)).setTypeName(dict.xmlTypeName);
}
unique |= (pcols[i].unique()) ? TRUE : FALSE;