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 6f515203e [hotfix] Fix comments in BinlogTable
6f515203e is described below

commit 6f515203e3edf8c8ecc852054d111c8fc5e54cc4
Author: Jingsong <[email protected]>
AuthorDate: Thu Nov 14 19:19:13 2024 +0800

    [hotfix] Fix comments in BinlogTable
---
 .../src/main/java/org/apache/paimon/table/system/BinlogTable.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/paimon-core/src/main/java/org/apache/paimon/table/system/BinlogTable.java 
b/paimon-core/src/main/java/org/apache/paimon/table/system/BinlogTable.java
index 96f9f6ed6..b17d61d44 100644
--- a/paimon-core/src/main/java/org/apache/paimon/table/system/BinlogTable.java
+++ b/paimon-core/src/main/java/org/apache/paimon/table/system/BinlogTable.java
@@ -45,11 +45,11 @@ import static 
org.apache.paimon.catalog.Catalog.SYSTEM_TABLE_SPLITTER;
 /**
  * A {@link Table} for reading binlog of table. The binlog format is as below.
  *
- * <p>INSERT: [+I, [co1, null], [col2, null]]
+ * <p>INSERT: [+I, [co1], [col2]]
  *
  * <p>UPDATE: [+U, [co1_ub, col1_ua], [col2_ub, col2_ua]]
  *
- * <p>DELETE: [-D, [co1, null], [col2, null]]
+ * <p>DELETE: [-D, [co1], [col2]]
  */
 public class BinlogTable extends AuditLogTable {
 

Reply via email to