Skip to content

Commit

Permalink
Revert "HHH-4098 VARBINARY should be BLOB in DB2400Dialect"
Browse files Browse the repository at this point in the history
This reverts commit 5900205.
  • Loading branch information
Brett Meyer committed Sep 27, 2012
1 parent 5900205 commit 4152ff6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 124 deletions.
Expand Up @@ -64,8 +64,7 @@ public DB2Dialect() {
registerColumnType( Types.DATE, "date" );
registerColumnType( Types.TIME, "time" );
registerColumnType( Types.TIMESTAMP, "timestamp" );
registerColumnType( Types.VARBINARY, "blob($l)" );
registerColumnType( Types.VARBINARY, 32766, "varchar($l) for bit data" );
registerColumnType( Types.VARBINARY, "varchar($l) for bit data" );
registerColumnType( Types.NUMERIC, "numeric($p,$s)" );
registerColumnType( Types.BLOB, "blob($l)" );
registerColumnType( Types.CLOB, "clob($l)" );
Expand Down

This file was deleted.

0 comments on commit 4152ff6

Please sign in to comment.