You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's rather difficult to copy sequential nodes correctly.
One possible solution is to create and delete "fake" sequential nodes in multi transaction, while sequence number will become desired minus one; then create the final node.
This solution works, but it's rather tricky. For example, if sequence number was one million, you need to create and delete node 999 999 times. To speed up the process, you can do multiple create/delete in one transaction, for example, 100 operations in a batch. (Transaction can be arbitary large unless packet size is greater than 1 MB; and it's difficult to predict packet size.)
So, the next created sequential node won't get correct number.
The text was updated successfully, but these errors were encountered: