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
13 #include "reftable-basics.h"
15 struct reftable_merged_table
{
16 struct reftable_reader
**readers
;
18 enum reftable_hash hash_id
;
20 /* If unset, produce deletions. This is useful for compaction. For the
21 * full stack, deletions should be produced. */
22 int suppress_deletions
;
28 struct reftable_iterator
;
30 int merged_table_init_iter(struct reftable_merged_table
*mt
,
31 struct reftable_iterator
*it
,