sequence tables not getting replicated #35
Replies: 1 comment
-
Hi Ram, We are adding support for snowflake sequences in the very near future |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have
pg15.3
running in two nodes (node1, node2) and subscribed to replication sets.How do we get sequence tables replicated?
TableA
has BigInt autoincrement primary key.for instance, if the last value of primary key is
120
innode1
, then when we insert tonode1
the auto generated value is121
innode1
.But when i try to insert the next time in
node2
in the sameTableA
, insert fails because the the sequence value it generates is121
again. when i retry the insert, it succeeds.May i please request some help here ?
Beta Was this translation helpful? Give feedback.
All reactions