Skip to content

Commit

Permalink
0005514: Prevented SQL Server sysname type from having its size speci…
Browse files Browse the repository at this point in the history
…fied
  • Loading branch information
evan-miller-jumpmind committed Oct 5, 2022
1 parent 7e62aa0 commit d1b74a3
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -713,6 +713,9 @@ protected void filterColumnSqlType(StringBuilder sqlType) {
} else if (StringUtils.containsIgnoreCase(sqlType, "uniqueidentifier(")) {
sqlType.setLength(0);
sqlType.append("uniqueidentifier");
} else if (StringUtils.containsIgnoreCase(sqlType, "sysname(")) {
sqlType.setLength(0);
sqlType.append("sysname");
}
}

Expand Down

0 comments on commit d1b74a3

Please sign in to comment.