HHH-6717 oracle does not have a boolean type
This commit is contained in:
parent
884f6a2455
commit
f951e15fea
|
@ -82,6 +82,8 @@ public class Oracle8iDialect extends Dialect {
|
|||
registerColumnType( Types.DOUBLE, "double precision" );
|
||||
registerColumnType( Types.NUMERIC, "number($p,$s)" );
|
||||
registerColumnType( Types.DECIMAL, "number($p,$s)" );
|
||||
|
||||
registerColumnType( Types.BOOLEAN, "char(1)" );
|
||||
}
|
||||
|
||||
protected void registerDateTimeTypeMappings() {
|
||||
|
|
Loading…
Reference in New Issue