mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-29 04:37:00 +00:00
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
25 lines
653 B
C++
25 lines
653 B
C++
/*
|
|
* Copyright (C) 2022-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
#include "schema/schema_fwd.hh"
|
|
#include <functional>
|
|
#include <seastar/core/future.hh>
|
|
#include "mutation/mutation_fragment_fwd.hh"
|
|
|
|
using namespace seastar;
|
|
|
|
class flat_mutation_reader_v2;
|
|
class reader_permit;
|
|
|
|
flat_mutation_reader_v2
|
|
make_generating_reader_v2(schema_ptr s, reader_permit permit, noncopyable_function<future<mutation_fragment_v2_opt> ()> get_next_fragment);
|
|
|
|
flat_mutation_reader_v2
|
|
make_generating_reader_v1(schema_ptr s, reader_permit permit, noncopyable_function<future<mutation_fragment_opt> ()> get_next_fragment);
|