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 Oct 11, 2012
1 parent f97d826 commit 2940bcf
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 2940bcf

Please sign in to comment.