Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0004296: On MySQL, if some SymmetricDS table columns are uppercase an…
…d others are lowercase in the same table you get a null pointer (#110)
  • Loading branch information
chenson42 committed Mar 2, 2020
1 parent 15b5f7f commit 00693f7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -253,7 +253,7 @@ protected void processTableStructureChanges(Database currentModel, Database desi
for (Iterator<Column> columnIt = changedColumns.iterator(); columnIt.hasNext();) {
Column sourceColumn = columnIt.next();
Column targetColumn = targetTable.findColumn(sourceColumn.getName(),
delimitedIdentifierModeOn);
false);

processColumnChange(sourceTable, targetTable, sourceColumn, targetColumn, ddl);
}
Expand Down

0 comments on commit 00693f7

Please sign in to comment.