This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new b6a6b8ab5c [cdc] Correct the isDdl field for aliyun-json (#4996)
b6a6b8ab5c is described below
commit b6a6b8ab5c0444e5a038c0f374efb66f5d38102a
Author: JackeyLee007 <[email protected]>
AuthorDate: Mon Feb 10 16:39:29 2025 +0800
[cdc] Correct the isDdl field for aliyun-json (#4996)
---
.../paimon/flink/action/cdc/format/aliyun/AliyunRecordParser.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/format/aliyun/AliyunRecordParser.java
b/paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/format/aliyun/AliyunRecordParser.java
index e31b282a76..1367acc864 100644
---
a/paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/format/aliyun/AliyunRecordParser.java
+++
b/paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/format/aliyun/AliyunRecordParser.java
@@ -66,7 +66,7 @@ public class AliyunRecordParser extends
AbstractJsonRecordParser {
private static final Logger LOG =
LoggerFactory.getLogger(AliyunRecordParser.class);
- private static final String FIELD_IS_DDL = "isDdl";
+ private static final String FIELD_IS_DDL = "ddl";
private static final String FIELD_TYPE = "op";
private static final String OP_UPDATE_BEFORE = "UPDATE_BEFORE";