diff --git a/product_docs/docs/pgd/5.6/reference/sequences.mdx b/product_docs/docs/pgd/5.6/reference/sequences.mdx index 5168a53447a..7755189c680 100644 --- a/product_docs/docs/pgd/5.6/reference/sequences.mdx +++ b/product_docs/docs/pgd/5.6/reference/sequences.mdx @@ -25,7 +25,7 @@ if it's currently active. See [DDL replication](../ddl). #### Synopsis ```sql -bdr.alter_sequence_set_kind(seqoid regclass, seqkind text) +bdr.alter_sequence_set_kind(seqoid regclass, seqkind text, start bigint DEFAULT NULL) ``` #### Parameters @@ -34,6 +34,7 @@ bdr.alter_sequence_set_kind(seqoid regclass, seqkind text) - `seqkind` — `local` for a standard PostgreSQL sequence, `snowflakeid` or `galloc` for globally unique PGD sequences, or `timeshard` for legacy globally unique sequence. +- `start` — Allows specifying new starting point for galloc and local sequences. #### Notes