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:
Steve Ebersole 2007-08-15 02:38:39 +00:00
parent fe7d0d7120
commit a3a8486793
1 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,8 @@ public class Oracle8iDialect extends Dialect {
}
protected void registerDateTimeTypeMappings() {
registerColumnType( Types.DATE, "date" );
registerColumnType( Types.TIME, "date" );
registerColumnType( Types.TIMESTAMP, "date" );
}