(ctx context.Context, poolID ksuid.KSUID, branch string, objects []ksuid.KSUID, writeVectors bool, commit api.CommitMessage)
| 87 | } |
| 88 | |
| 89 | func (r *remote) Compact(ctx context.Context, poolID ksuid.KSUID, branch string, objects []ksuid.KSUID, writeVectors bool, commit api.CommitMessage) (ksuid.KSUID, error) { |
| 90 | res, err := r.conn.Compact(ctx, poolID, branch, objects, writeVectors, commit) |
| 91 | return res.Commit, err |
| 92 | } |
| 93 | |
| 94 | func (r *remote) RemovePool(ctx context.Context, pool ksuid.KSUID) error { |
| 95 | return r.conn.RemovePool(ctx, pool) |