Hisoka-X commented on code in PR #7690:
URL: https://github.com/apache/seatunnel/pull/7690#discussion_r1766502512
##########
seatunnel-connectors-v2/connector-jdbc/src/main/java/org/apache/seatunnel/connectors/seatunnel/jdbc/config/JdbcSourceTableConfig.java:
##########
@@ -36,32 +33,23 @@
@Data
@Builder
-@JsonIgnoreProperties(ignoreUnknown = true)
public class JdbcSourceTableConfig implements Serializable {
private static final int DEFAULT_PARTITION_NUMBER = 10;
- @JsonProperty("table_path")
private String tablePath;
- @JsonProperty("query")
private String query;
- @JsonProperty("partition_column")
private String partitionColumn;
- @JsonProperty("partition_num")
private Integer partitionNumber;
- @JsonProperty("partition_lower_bound")
private BigDecimal partitionStart;
- @JsonProperty("partition_upper_bound")
private BigDecimal partitionEnd;
- @JsonProperty("use_select_count")
private Boolean useSelectCount;
- @JsonProperty("skip_analyze")
Review Comment:
Also remove useless annotation
--
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]