Skip to content

Commit

Permalink
Rename ShardingSphereStatisticsNodePath
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Jan 22, 2025
1 parent ccae8be commit 078b040
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public void persist(final String databaseName, final String schemaName, final St
if (rows.isEmpty()) {
repository.persist(ShardingSphereStatisticsNodePath.getTablePath(databaseName, schemaName, tableName.toLowerCase()), "");
} else {
rows.forEach(each -> repository.persist(ShardingSphereStatisticsNodePath.getTableRowPath(databaseName, schemaName, tableName.toLowerCase(), each.getUniqueKey()), YamlEngine.marshal(each)));
rows.forEach(
each -> repository.persist(ShardingSphereStatisticsNodePath.getTableRowPath(databaseName, schemaName, tableName.toLowerCase(), each.getUniqueKey()), YamlEngine.marshal(each)));
}
}

Expand Down

0 comments on commit 078b040

Please sign in to comment.