Skip to content

Commit

Permalink
0001555: API - ddl of type CLOB for sql server tries to change the co…
Browse files Browse the repository at this point in the history
…lumn type on restarts
  • Loading branch information
chenson42 committed Feb 1, 2014
1 parent 56b84c4 commit 2cfdbe5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -75,7 +75,7 @@ public MsSqlDdlBuilder() {
// BIGINT will be mapped back to BIGINT by the model reader
databaseInfo.addNativeTypeMapping(Types.BIGINT, "DECIMAL(19,0)");
databaseInfo.addNativeTypeMapping(Types.BLOB, "IMAGE", Types.LONGVARBINARY);
databaseInfo.addNativeTypeMapping(Types.CLOB, "TEXT", Types.CLOB);
databaseInfo.addNativeTypeMapping(Types.CLOB, "TEXT", Types.LONGVARCHAR);
databaseInfo.addNativeTypeMapping(Types.DATE, "DATETIME", Types.TIMESTAMP);
databaseInfo.addNativeTypeMapping(Types.DISTINCT, "IMAGE", Types.LONGVARBINARY);
databaseInfo.addNativeTypeMapping(Types.DOUBLE, "FLOAT", Types.FLOAT);
Expand Down

0 comments on commit 2cfdbe5

Please sign in to comment.