()
| 756 | } |
| 757 | |
| 758 | func (n *Node) initSerializedCollectionNode() { |
| 759 | n.serializedNode = &persistencespb.ChasmNode{ |
| 760 | Metadata: &persistencespb.ChasmNodeMetadata{ |
| 761 | InitialVersionedTransition: &persistencespb.VersionedTransition{ |
| 762 | TransitionCount: n.backend.NextTransitionCount(), |
| 763 | NamespaceFailoverVersion: n.backend.GetCurrentVersion(), |
| 764 | }, |
| 765 | Attributes: &persistencespb.ChasmNodeMetadata_CollectionAttributes{ |
| 766 | CollectionAttributes: &persistencespb.ChasmCollectionAttributes{}, |
| 767 | }, |
| 768 | }, |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | func (n *Node) setSerializedNode( |
| 773 | nodePath []string, |
no test coverage detected