vernedeng commented on code in PR #11021:
URL: https://github.com/apache/inlong/pull/11021#discussion_r1746395110
##########
inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/pojo/TransformConfig.java:
##########
@@ -35,16 +35,37 @@ public class TransformConfig {
@JsonProperty("configuration")
private Map<String, Object> configuration;
+ @JsonProperty("strictOrder")
+ private boolean strictOrder = true;
+
+ @JsonProperty("ignoreConfigError")
+ private boolean ignoreConfigError = true;
+
@JsonCreator
public TransformConfig(@JsonProperty("transformSql") String transformSql) {
- this(transformSql, ImmutableMap.of());
+ this(transformSql, ImmutableMap.of(), true, true);
}
@JsonCreator
public TransformConfig(@JsonProperty("transformSql") String transformSql,
@JsonProperty("configuration") Map<String, Object> configuration) {
+ this(transformSql, configuration, true, true);
Review Comment:
false, false
--
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]