Skip to content

Commit

Permalink
[hotfix] Fix comments in BinlogTable
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Nov 14, 2024
1 parent 9b9ed72 commit 6f51520
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
/**
* 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 {

Expand Down

0 comments on commit 6f51520

Please sign in to comment.