mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-30 05:07:05 +00:00
This reverts commit0b516da95b, reversing changes made to30199552ac. It breaks cluster.random_failures.test_random_failures.test_random_failures in debug mode (at least). Fixes #24513
48 lines
781 B
C++
48 lines
781 B
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace replica {
|
|
|
|
// replica/database.hh
|
|
class database;
|
|
class keyspace;
|
|
class table;
|
|
using column_family = table;
|
|
class memtable_list;
|
|
|
|
}
|
|
|
|
|
|
// mutation.hh
|
|
class mutation;
|
|
class mutation_partition;
|
|
|
|
// schema/schema.hh
|
|
class schema;
|
|
class column_definition;
|
|
class column_mapping;
|
|
|
|
// schema_mutations.hh
|
|
class schema_mutations;
|
|
|
|
// keys.hh
|
|
class exploded_clustering_prefix;
|
|
class partition_key;
|
|
class partition_key_view;
|
|
class clustering_key_prefix;
|
|
class clustering_key_prefix_view;
|
|
using clustering_key = clustering_key_prefix;
|
|
using clustering_key_view = clustering_key_prefix_view;
|
|
|
|
// memtable.hh
|
|
namespace replica {
|
|
class memtable;
|
|
}
|