compile: Fix headers so that *-headers targets compile cleanly.
Closes #10273
This commit is contained in:
committed by
Botond Dénes
parent
5ef1b49cb8
commit
6f1b6da68a
@@ -12,6 +12,7 @@
|
||||
#include <seastar/core/sharded.hh>
|
||||
#include <seastar/core/abort_source.hh>
|
||||
#include <seastar/core/semaphore.hh>
|
||||
#include "data_dictionary/data_dictionary.hh"
|
||||
|
||||
namespace replica {
|
||||
class database;
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
|
||||
#include "cql3/statements/cf_prop_defs.hh"
|
||||
#include "cql3/column_identifier.hh"
|
||||
#include "data_dictionary/data_dictionary.hh"
|
||||
|
||||
namespace cql3 {
|
||||
|
||||
|
||||
@@ -8,9 +8,11 @@
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
#include <seastar/core/io_priority_class.hh>
|
||||
#include "readers/flat_mutation_reader_v2.hh"
|
||||
#include "readers/flat_mutation_reader.hh"
|
||||
#include "db/system_keyspace.hh"
|
||||
#include "tracing/trace_state.hh"
|
||||
|
||||
namespace replica {
|
||||
class database;
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
#include <seastar/core/seastar.hh>
|
||||
#include <seastar/core/sstring.hh>
|
||||
#include <seastar/core/smp.hh>
|
||||
#include <utility>
|
||||
#include <optional>
|
||||
#include "dht/token.hh"
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
#include "reader_permit.hh"
|
||||
#include "db/view/row_locking.hh"
|
||||
#include <seastar/core/abort_source.hh>
|
||||
#include <seastar/core/circular_buffer.hh>
|
||||
#include "mutation.hh"
|
||||
#include "mutation_rebuilder.hh"
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
#include "seastarx.hh"
|
||||
#include <seastar/core/future.hh>
|
||||
#include <seastar/net/socket_defs.hh>
|
||||
#include <vector>
|
||||
#include "client_data.hh"
|
||||
#include "utils/chunked_vector.hh"
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include "dht/i_partitioner_fwd.hh"
|
||||
#include <vector>
|
||||
#include "mutation_fragment_fwd.hh"
|
||||
#include "readers/flat_mutation_reader_fwd.hh"
|
||||
|
||||
class flat_mutation_reader;
|
||||
class reader_permit;
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <vector>
|
||||
#include "dht/i_partitioner_fwd.hh"
|
||||
#include "mutation_fragment_fwd.hh"
|
||||
#include "readers/flat_mutation_reader_fwd.hh"
|
||||
|
||||
class flat_mutation_reader_v2;
|
||||
class reader_permit;
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "mutation_fragment_v2.hh"
|
||||
#include "range_tombstone_change_generator.hh"
|
||||
|
||||
template <typename EndConsumer>
|
||||
requires requires(EndConsumer& c, mutation_fragment_v2 mf) {
|
||||
|
||||
@@ -17,6 +17,8 @@
|
||||
#include <seastar/core/io_priority_class.hh>
|
||||
|
||||
class flat_mutation_reader;
|
||||
class flat_mutation_reader_v2;
|
||||
class reader_permit;
|
||||
|
||||
namespace sstables {
|
||||
class sstables_manager;
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "mutation_fragment.hh"
|
||||
#include "mutation_fragment_v2.hh"
|
||||
#include "converting_mutation_partition_applier.hh"
|
||||
|
||||
// A StreamedMutationTransformer which transforms the stream to a different schema
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <optional>
|
||||
|
||||
#include "timestamp.hh"
|
||||
#include <seastar/core/sharded.hh>
|
||||
|
||||
class mutation;
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include "mutation_fragment.hh"
|
||||
#include "clustering_ranges_walker.hh"
|
||||
#include "clustering_key_filter.hh"
|
||||
#include "readers/flat_mutation_reader_fwd.hh"
|
||||
|
||||
namespace sstables {
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
#include "m_format_read_helpers.hh"
|
||||
#include "sstables/mx/parsers.hh"
|
||||
#include "sstables/index_entry.hh"
|
||||
#include <seastar/core/circular_buffer.hh>
|
||||
|
||||
namespace sstables {
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <seastar/core/coroutine.hh>
|
||||
#include <seastar/core/weak_ptr.hh>
|
||||
#include <seastar/core/condition-variable.hh>
|
||||
#include "test/raft/logical_timer.hh"
|
||||
|
||||
using namespace seastar;
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
#include <seastar/core/future-util.hh>
|
||||
|
||||
#include "raft/logical_clock.hh"
|
||||
#include "raft/raft.hh"
|
||||
|
||||
using namespace seastar;
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
#include "gc_clock.hh"
|
||||
#include "dht/token.hh"
|
||||
#include "schema_fwd.hh"
|
||||
#include "range.hh"
|
||||
|
||||
namespace dht {
|
||||
|
||||
@@ -21,12 +22,18 @@ using token_range = nonwrapping_range<token>;
|
||||
|
||||
}
|
||||
|
||||
class tombstone_gc_options;
|
||||
|
||||
struct get_gc_before_for_range_result {
|
||||
gc_clock::time_point min_gc_before;
|
||||
gc_clock::time_point max_gc_before;
|
||||
bool knows_entire_range;
|
||||
};
|
||||
|
||||
namespace replica {
|
||||
class database;
|
||||
}
|
||||
|
||||
void drop_repair_history_map_for_table(const utils::UUID& id);
|
||||
|
||||
get_gc_before_for_range_result get_gc_before_for_range(schema_ptr s, const dht::token_range& range, const gc_clock::time_point& query_time);
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <boost/intrusive/parent_from_member.hpp>
|
||||
#include <assert.h>
|
||||
|
||||
// A movable pointer-like object paired with exactly one other object of the same type.
|
||||
// The two objects which are paired with each other point at each other.
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#pragma once
|
||||
#include <type_traits>
|
||||
#include <seastar/util/concepts.hh>
|
||||
#include <utility>
|
||||
|
||||
namespace utils {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user