danny0405 commented on code in PR #9330:
URL: https://github.com/apache/hudi/pull/9330#discussion_r1280304744


##########
hudi-platform-service/hudi-metaserver/hudi-metaserver-client/src/main/java/org/apache/hudi/common/table/HoodieTableMetaserverClient.java:
##########
@@ -60,18 +60,17 @@ public class HoodieTableMetaserverClient extends 
HoodieTableMetaClient {
 
   public HoodieTableMetaserverClient(Configuration conf, String basePath, 
ConsistencyGuardConfig consistencyGuardConfig,
                                      String mergerStrategy, 
FileSystemRetryConfig fileSystemRetryConfig,
-                                     String databaseName, String tableName, 
HoodieMetaserverConfig config) {
+                                     HoodieMetaserverConfig config) {
     super(conf, basePath, false, consistencyGuardConfig, 
Option.of(TimelineLayoutVersion.CURR_LAYOUT_VERSION),
         config.getString(HoodieTableConfig.PAYLOAD_CLASS_NAME), 
mergerStrategy, fileSystemRetryConfig);
-    checkArgument(nonEmpty(databaseName), "database name is required.");
-    checkArgument(nonEmpty(tableName), "table name is required.");
-    this.databaseName = databaseName;
-    this.tableName = tableName;
+    checkArgument(nonEmpty(tableConfig.getDatabaseName()), "database name is 
required.");
+    checkArgument(nonEmpty(tableConfig.getTableName()), "table name is 
required.");
+    this.databaseName = tableConfig.getDatabaseName();

Review Comment:
   Where was the table config initialized ?



-- 
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: commits-unsubscr...@hudi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to