(ctx context.Context, k string, subdocKey string, cas uint64, value []byte)
| 91 | } |
| 92 | |
| 93 | func (c *Collection) WriteSubDoc(ctx context.Context, k string, subdocKey string, cas uint64, value []byte) (uint64, error) { |
| 94 | return c.SubdocWrite(ctx, k, subdocKey, cas, value) |
| 95 | } |
| 96 | |
| 97 | func (c *Collection) GetWithXattrs(ctx context.Context, k string, xattrKeys []string) ([]byte, map[string][]byte, uint64, error) { |
| 98 | _, body, xattrs, cas, err := c.subdocGetBodyAndXattrs(ctx, k, xattrKeys, true) |
no test coverage detected