Hisoka-X commented on code in PR #7628:
URL: https://github.com/apache/seatunnel/pull/7628#discussion_r1855132511
##########
seatunnel-transforms-v2/src/main/java/org/apache/seatunnel/transform/common/TransformCommonOptions.java:
##########
@@ -17,14 +17,37 @@
package org.apache.seatunnel.transform.common;
+import
org.apache.seatunnel.shade.com.fasterxml.jackson.core.type.TypeReference;
+
import org.apache.seatunnel.api.configuration.Option;
import org.apache.seatunnel.api.configuration.Options;
import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+
+public class TransformCommonOptions {
+
+ public static final Option<List<Map<String, Object>>> MULTI_TABLES =
+ Options.key("table_transform")
+ .type(new TypeReference<List<Map<String, Object>>>() {})
+ .defaultValue(Collections.emptyList())
+ .withDescription("The table transform config");
-public final class CommonOptions {
+ public static final Option<String> TABLE_PATH =
Review Comment:
done
--
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]