mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-14 23:25:00 +00:00
HHH-7716 Renamed smallint data type to short. Sinonyms in CUBRID but
internally saved as short.
This commit is contained in:
parent
9534ffc94c
commit
d4ab63ccc0
@ -58,10 +58,10 @@ public CUBRIDDialect() {
|
||||
registerColumnType( Types.INTEGER, "int" );
|
||||
registerColumnType( Types.NUMERIC, "numeric($p,$s)" );
|
||||
registerColumnType( Types.REAL, "double" );
|
||||
registerColumnType( Types.SMALLINT, "smallint" );
|
||||
registerColumnType( Types.SMALLINT, "short" );
|
||||
registerColumnType( Types.TIME, "time" );
|
||||
registerColumnType( Types.TIMESTAMP, "timestamp" );
|
||||
registerColumnType( Types.TINYINT, "smallint" );
|
||||
registerColumnType( Types.TINYINT, "short" );
|
||||
registerColumnType( Types.VARBINARY, 2000, "bit varying($l)" );
|
||||
registerColumnType( Types.VARCHAR, 4000, "varchar($l)" );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user