HHH-2788 : missing type mapping for DATE and TIME on Oracle8iDialect
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12940 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
fe7d0d7120
commit
a3a8486793
|
@ -64,6 +64,8 @@ public class Oracle8iDialect extends Dialect {
|
|||
}
|
||||
|
||||
protected void registerDateTimeTypeMappings() {
|
||||
registerColumnType( Types.DATE, "date" );
|
||||
registerColumnType( Types.TIME, "date" );
|
||||
registerColumnType( Types.TIMESTAMP, "date" );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue