Hisoka-X commented on code in PR #9743:
URL: https://github.com/apache/seatunnel/pull/9743#discussion_r2314084602
##########
seatunnel-connectors-v2/connector-hive/src/main/java/org/apache/seatunnel/connectors/seatunnel/hive/utils/HiveMetaStoreProxy.java:
##########
@@ -47,11 +55,12 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
+import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
@Slf4j
-public class HiveMetaStoreProxy implements Closeable, Serializable {
+public class HiveMetaStoreProxy implements Catalog, Closeable, Serializable {
Review Comment:
```suggestion
public class HiveMetaStoreCatalog implements Catalog, Closeable,
Serializable {
```
##########
seatunnel-connectors-v2/connector-hive/src/main/java/org/apache/seatunnel/connectors/seatunnel/hive/sink/HiveSaveModeHandler.java:
##########
@@ -55,6 +55,7 @@ public class HiveSaveModeHandler implements SaveModeHandler,
AutoCloseable {
private final List<String> partitionFields;
private HiveMetaStoreProxy hiveMetaStoreProxy;
+ private Catalog optionalCatalog; // 可选的Catalog支持
Review Comment:
Please remove chinese.
--
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]