Skip to content

Commit

Permalink
Merge pull request #6386 from EnterpriseDB/irionr-patch-1
Browse files Browse the repository at this point in the history
Update sequences.mdx
  • Loading branch information
djw-m authored Jan 8, 2025
2 parents 7d0da0e + 08d61db commit 100cb34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion product_docs/docs/pgd/5.6/reference/sequences.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

1 comment on commit 100cb34

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.