Skip to content

Commit

Permalink
Refactor InventoryDumper (#32690)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Aug 26, 2024
1 parent 8dbc007 commit 75dd7cf
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ protected void runBlocking() {

private void init() {
if (null == tableMetaData) {
tableMetaData = metaDataLoader.getTableMetaData(
dumperContext.getCommonContext().getTableAndSchemaNameMapper().getSchemaName(dumperContext.getLogicTableName()), dumperContext.getActualTableName());
String schemaName = dumperContext.getCommonContext().getTableAndSchemaNameMapper().getSchemaName(dumperContext.getLogicTableName());
String tableName = dumperContext.getActualTableName();
tableMetaData = metaDataLoader.getTableMetaData(schemaName, tableName);
}
}

Expand Down

0 comments on commit 75dd7cf

Please sign in to comment.