Skip to content

Commit

Permalink
Foreign Key meta data retrieval logging changes when can't find foreign
Browse files Browse the repository at this point in the history
key table or columns.
  • Loading branch information
philipmarzullo64 committed Feb 17, 2020
1 parent 0d6142b commit 924719d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1776,10 +1776,10 @@ public List<TableRow> getImportedForeignTableRows(List<TableRow> tableRows, Set<
fkDepList.add(foreignTableRow);
log.debug("Add foreign table reference '{}' whereSql='{}'", foreignTable.getName(), whereSql);
} else {
log.debug("The foreign table reference was null for {}", foreignTable.getName());
log.warn("The foreign table reference was null for {}", foreignTable.getName());
}
} else {
log.debug("Foreign table '{}' not found for foreign key '{}'", fk.getForeignTableName(), fk.getName());
log.warn("Foreign table '{}' not found for foreign key '{}'", fk.getForeignTableName(), fk.getName());
}
if (fkDepList.size() > 0) {
fkDepList.addAll(getImportedForeignTableRows(fkDepList, visited, encoding));
Expand Down

0 comments on commit 924719d

Please sign in to comment.