Skip to content

Commit 931f823

Browse files
author
bosiew.tian
committed
[core]fix2
1 parent 4e71808 commit 931f823

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

docs/content/concepts/system-tables.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,16 @@ SELECT * FROM my_table$audit_log;
136136
*/
137137
```
138138

139-
#### Reading with Sequence Number
140-
141139
For primary key tables, you can enable the `table-read.sequence-number.enabled` option to include the `_SEQUENCE_NUMBER` field in the output.
142140

143141
{{< tabs "audit-log-sequence-number" >}}
144142

143+
{{< tab "Enable via ALTER TABLE" >}}
144+
```sql
145+
ALTER TABLE my_table SET ('table-read.sequence-number.enabled' = 'true');
146+
```
147+
{{< /tab >}}
148+
145149
{{< tab "Enable via CREATE TABLE" >}}
146150
```sql
147151
CREATE TABLE my_table (
@@ -152,12 +156,6 @@ CREATE TABLE my_table (
152156
```
153157
{{< /tab >}}
154158

155-
{{< tab "Enable via ALTER TABLE" >}}
156-
```sql
157-
ALTER TABLE my_table SET ('table-read.sequence-number.enabled' = 'true');
158-
```
159-
{{< /tab >}}
160-
161159
{{< /tabs >}}
162160

163161
```sql

0 commit comments

Comments
 (0)