Skip to content

Commit

Permalink
0002363: CHAR(x) Column Padding with whitespaces won't work if charac…
Browse files Browse the repository at this point in the history
…ter conversion is needed to
  • Loading branch information
NiasSt90 committed Aug 25, 2015
1 parent 49fe0a5 commit 1282982
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -90,8 +90,8 @@ public InterbaseDdlBuilder() {
databaseInfo.setHasSize(Types.BINARY, false);
databaseInfo.setHasSize(Types.VARBINARY, false);

databaseInfo.setNonBlankCharColumnSpacePadded(true);
databaseInfo.setBlankCharColumnSpacePadded(true);
databaseInfo.setNonBlankCharColumnSpacePadded(false);
databaseInfo.setBlankCharColumnSpacePadded(false);
databaseInfo.setCharColumnSpaceTrimmed(false);
databaseInfo.setEmptyStringNulled(false);

Expand Down

0 comments on commit 1282982

Please sign in to comment.