File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -136,12 +136,16 @@ SELECT * FROM my_table$audit_log;
136136*/
137137```
138138
139- #### Reading with Sequence Number
140-
141139For 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
147151CREATE 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
You can’t perform that action at this time.
0 commit comments