Skip to content

Commit 3b7d98f

Browse files
committed
Update with taroface feedback (1)
1 parent 312a8ae commit 3b7d98f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/current/v25.2/create-sequence.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,18 +299,18 @@ For example, to cache 10 sequence values in memory:
299299

300300
### Cache sequence values per node
301301

302-
For improved performance, use the `PER NODE CACHE` keyword to cache sequence values in memory at the node level.
302+
For improved performance, use the `PER NODE CACHE` clause to cache sequence values in memory at the node level.
303303

304304
For example, to cache 10 sequence values per node:
305305

306306
{% include_cached copy-clipboard.html %}
307307
~~~ sql
308-
> CREATE SEQUENCE customer_seq_node_cached PER NODE CACHE 10;
308+
CREATE SEQUENCE customer_seq_node_cached PER NODE CACHE 10;
309309
~~~
310310

311311
{% include_cached copy-clipboard.html %}
312312
~~~ sql
313-
> SHOW CREATE customer_seq_node_cached;
313+
SHOW CREATE customer_seq_node_cached;
314314
~~~
315315

316316
~~~

0 commit comments

Comments
 (0)