zhilinli123 commented on code in PR #4634:
URL:
https://github.com/apache/incubator-seatunnel/pull/4634#discussion_r1191395189
##########
seatunnel-e2e/seatunnel-connector-v2-e2e/connector-jdbc-e2e/connector-jdbc-e2e-part-1/src/test/java/org/apache/seatunnel/connectors/seatunnel/jdbc/JdbcMysqlIT.java:
##########
@@ -194,11 +196,14 @@ Pair<String[], List<SeaTunnelRow>> initTestData() {
};
List<SeaTunnelRow> rows = new ArrayList<>();
+ // Define a large bigint data value to test for compatibility above
bigint(20)
+ BigDecimal testBigDecimalValue = new BigDecimal("2844674407371055000");
for (int i = 0; i < 100; i++) {
byte byteArr = Integer.valueOf(i).byteValue();
SeaTunnelRow row =
new SeaTunnelRow(
new Object[] {
+ testBigDecimalValue.add(BigDecimal.valueOf(i)),
Review Comment:
Please have a look. Thank you. @ic4y
--
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]