Skip to content

Commit

Permalink
0005456: Fixed NPE when checking for Oracle LONG type
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Oct 17, 2022
1 parent 95149fa commit 35b9e90
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -222,7 +222,7 @@ public Column[] orderColumnsForTable(Table table) {
break;
}
}
if (cols[i].getJdbcTypeName().equalsIgnoreCase("LONG")) {
if ("LONG".equalsIgnoreCase(cols[i].getJdbcTypeName())) {
endingColumns.add(cols[i]);
} else if (!syncKey) {
orderedColumns.add(cols[i]);
Expand Down

0 comments on commit 35b9e90

Please sign in to comment.