Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitozi committed Nov 13, 2024
1 parent 5f0739f commit 54cef42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/maintenance/system-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ SELECT * FROM T$statistics;
```
### Binlog Table

You can streaming query the binlog through binlog table. Note:
You can streaming query the binlog through binlog table. You can get the update before and update after in one row. Note:

{{< hint info >}}
1. Only support streaming query the binlog
Expand All @@ -427,7 +427,7 @@ SELECT * FROM T$binlog /*+ OPTIONS('scan.mode' = 'latest')*/;
+------------------+----------------------+-----------------------+
| +I | [col_0, null] | [col_1, null] |
+------------------+----------------------+-----------------------+
| +U | [col_0_ub, col_0_ua] | [col_0_ub, col_0_ua] |
| +U | [col_0_ub, col_0_ua] | [col_1_ub, col_1_ua] |
+------------------+----------------------+-----------------------+
| -D | [col_0, null] | [col_1, null] |
+------------------+----------------------+-----------------------+
Expand Down

0 comments on commit 54cef42

Please sign in to comment.