Schema related files are moved there. This excludes schema files that also interact with mutations, because the mutation module depends on the schema. Those files will have to go into a separate module. Closes #12858
17 lines
288 B
C++
17 lines
288 B
C++
/*
|
|
* Copyright (C) 2022-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
#include "schema/schema_fwd.hh"
|
|
|
|
class flat_mutation_reader_v2;
|
|
class reader_permit;
|
|
|
|
flat_mutation_reader_v2 make_empty_flat_reader_v2(schema_ptr s, reader_permit permit);
|
|
|