Skip to content

Commit

Permalink
0005613: Fixed upgrade from VARCHAR to LONGVARCHAR not being detected…
Browse files Browse the repository at this point in the history
… on H2
  • Loading branch information
evan-miller-jumpmind committed Mar 16, 2023
1 parent 3cbb2c9 commit 513c910
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -86,7 +86,6 @@ public H2DdlBuilder() {
databaseInfo.addNativeTypeMapping(Types.BINARY, "BINARY", Types.BINARY);
databaseInfo.addNativeTypeMapping(Types.BLOB, "BLOB", Types.BLOB);
databaseInfo.addNativeTypeMapping(Types.CLOB, "CLOB", Types.CLOB);
databaseInfo.addNativeTypeMapping(Types.LONGVARCHAR, "VARCHAR(" + Integer.MAX_VALUE + ")", Types.VARCHAR);
databaseInfo.addNativeTypeMapping(Types.FLOAT, "DOUBLE", Types.DOUBLE);
databaseInfo.addNativeTypeMapping(Types.JAVA_OBJECT, "OTHER");
databaseInfo.setDefaultSize(Types.CHAR, Integer.MAX_VALUE);
Expand Down

0 comments on commit 513c910

Please sign in to comment.