Skip to content

Commit

Permalink
0005517: Empty string default values not syncing to target
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Marzullo committed Oct 6, 2022
1 parent 09c988e commit 33d60d1
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -252,9 +252,7 @@ public static Table nextTable(XmlPullParser parser, String catalog, String schem
} else if (attributeName.equalsIgnoreCase("size")) {
column.setSize(attributeValue);
} else if (attributeName.equalsIgnoreCase("default")) {
if (StringUtils.isNotBlank(attributeValue)) {
column.setDefaultValue(attributeValue);
}
} else if (attributeName.equalsIgnoreCase("autoIncrement")) {
column.setAutoIncrement(FormatUtils.toBoolean(attributeValue));
} else if (attributeName.equalsIgnoreCase("javaName")) {
Expand Down

0 comments on commit 33d60d1

Please sign in to comment.