Introduce schema/ module

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
This commit is contained in:
Avi Kivity
2023-02-14 22:43:41 +02:00
committed by Nadav Har'El
parent c0114d8b02
commit 69a385fd9d
225 changed files with 246 additions and 246 deletions

View File

@@ -13,7 +13,7 @@
#include "readers/flat_mutation_reader_v2.hh"
#include "mutation/mutation_fragment.hh"
#include "query-request.hh"
#include "schema_fwd.hh"
#include "schema/schema_fwd.hh"
#include "tracing/tracing.hh"
#include <boost/range/iterator_range.hpp>

View File

@@ -26,7 +26,7 @@
#include <seastar/core/future.hh>
#include "db/timeout_clock.hh"
#include "schema_fwd.hh"
#include "schema/schema_fwd.hh"
#include "dht/i_partitioner.hh"
#include "query-request.hh"
#include "utils/estimated_histogram.hh"

View File

@@ -11,7 +11,7 @@
#include "dht/i_partitioner.hh"
#include "gc_clock.hh"
#include "query-request.hh"
#include "schema_fwd.hh"
#include "schema/schema_fwd.hh"
#include "readers/flat_mutation_reader_v2.hh"
#include "mutation/frozen_mutation.hh"

View File

@@ -9,7 +9,7 @@
#pragma once
#include "dht/i_partitioner.hh"
#include "schema_fwd.hh"
#include "schema/schema_fwd.hh"
#include "mutation/mutation_fragment.hh"
#include "sstables/shared_sstable.hh"
#include "reader_permit.hh"