cc5566 commented on code in PR #9779:
URL: https://github.com/apache/gravitino/pull/9779#discussion_r2756322443
##########
core/src/main/java/org/apache/gravitino/stats/StatisticManager.java:
##########
@@ -85,6 +85,56 @@ public StatisticManager(EntityStore store, IdGenerator
idGenerator, Config confi
}
}
+ /**
+ * Builds storage options map by merging entity store JDBC configs (as
defaults) with
+ * partition-specific configs (which override defaults).
+ *
+ * @param config the configuration
+ * @return merged options map
+ */
+ private Map<String, String> buildStorageOptions(Config config) {
+ Map<String, String> options = new java.util.HashMap<>();
Review Comment:
Fixed - Changed from `java.util.HashMap` to `HashMap` with proper import.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]