Skip to content

Commit

Permalink
Renamed smallint data type to short. Sinonyms in CUBRID but internall…
Browse files Browse the repository at this point in the history
…y saved as short.
  • Loading branch information
kadishmal committed Aug 29, 2012
1 parent 93c51d1 commit f6912ff
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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)" );

Expand Down

0 comments on commit f6912ff

Please sign in to comment.