The ninth batch
[alt-git.git] / reftable / merged.h
bloba10469f58ef4232ec5de2effd1876f2a0999b5f2
1 /*
2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
9 #ifndef MERGED_H
10 #define MERGED_H
12 #include "system.h"
14 struct reftable_merged_table {
15 struct reftable_table *stack;
16 size_t stack_len;
17 uint32_t hash_id;
19 /* If unset, produce deletions. This is useful for compaction. For the
20 * full stack, deletions should be produced. */
21 int suppress_deletions;
23 uint64_t min;
24 uint64_t max;
27 void merged_table_release(struct reftable_merged_table *mt);
29 struct reftable_iterator;
31 void merged_table_init_iter(struct reftable_merged_table *mt,
32 struct reftable_iterator *it,
33 uint8_t typ);
35 #endif