Rename streamed_mutation* files to mutation_fragment*

Signed-off-by: Piotr Jastrzebski <piotr@scylladb.com>
This commit is contained in:
Piotr Jastrzebski
2018-01-22 15:04:39 +01:00
parent d590a063c6
commit 96c97ad1db
21 changed files with 21 additions and 22 deletions

View File

@@ -24,7 +24,7 @@
#include <vector>
#include "row_cache.hh"
#include "mutation_reader.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "partition_version.hh"
#include "utils/logalloc.hh"
#include "query-request.hh"

View File

@@ -39,7 +39,7 @@ using small_vector = std::vector<T>;
#endif
#include "fnv1a_hasher.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "mutation_partition.hh"
#include "db/timeout_clock.hh"

View File

@@ -25,7 +25,7 @@
#include "schema.hh"
#include "query-request.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
// Utility for in-order checking of overlap with position ranges.
class clustering_ranges_walker {

View File

@@ -200,7 +200,7 @@ modes = {
scylla_tests = [
'tests/mutation_test',
'tests/mvcc_test',
'tests/streamed_mutation_test',
'tests/mutation_fragment_test',
'tests/flat_mutation_reader_test',
'tests/schema_registry_test',
'tests/canonical_mutation_test',
@@ -363,7 +363,7 @@ scylla_core = (['database.cc',
'schema_registry.cc',
'bytes.cc',
'mutation.cc',
'streamed_mutation.cc',
'mutation_fragment.cc',
'partition_version.cc',
'row_cache.cc',
'canonical_mutation.cc',

View File

@@ -35,7 +35,7 @@
#include "range.hh"
#include "service/storage_service.hh"
#include "stdx.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "sstables/sstables.hh"
#include "db/timeout_clock.hh"

View File

@@ -25,7 +25,7 @@
#include "gc_clock.hh"
#include "query-request.hh"
#include "schema.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "flat_mutation_reader.hh"
#include "stdx.hh"

View File

@@ -26,7 +26,7 @@
#include "dht/i_partitioner.hh"
#include "position_in_partition.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "tracing/trace_state.hh"
#include <seastar/util/gcc6-concepts.hh>

View File

@@ -25,7 +25,7 @@
#include "atomic_cell.hh"
#include "database_fwd.hh"
#include "mutation_partition_view.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "flat_mutation_reader.hh"
class mutation;

View File

@@ -28,7 +28,7 @@
#include "schema.hh"
#include "dht/i_partitioner.hh"
#include "hashing.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include <seastar/util/optimized_optional.hh>

View File

@@ -21,7 +21,7 @@
#pragma once
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
static inline bool has_ck_selector(const query::clustering_row_ranges& ranges) {
// Like PK range, an empty row range, should be considered an "exclude all" restriction

View File

@@ -24,7 +24,7 @@
#include <seastar/util/defer.hh>
#include "mutation.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
std::ostream&
operator<<(std::ostream& os, const clustering_row& row) {

View File

@@ -28,7 +28,7 @@
#include "query-result-writer.hh"
#include "atomic_cell_hash.hh"
#include "reversibly_mergeable.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "mutation_query.hh"
#include "service/priority_manager.hh"
#include "mutation_compactor.hh"

View File

@@ -26,7 +26,7 @@
#include "database_fwd.hh"
#include "mutation_partition_view.hh"
#include "bytes_ostream.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
namespace ser {
template<typename Output>

View File

@@ -22,7 +22,7 @@
#pragma once
#include "mutation_partition.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "utils/anchorless_list.hh"
#include "utils/logalloc.hh"

View File

@@ -20,7 +20,7 @@
*/
#include "range_tombstone.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
std::ostream& operator<<(std::ostream& out, const range_tombstone& rt) {
if (rt) {

View File

@@ -23,7 +23,7 @@
#include "schema.hh"
#include "query-request.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "partition_version.hh"
#include "tracing/tracing.hh"
#include "row_cache.hh"

View File

@@ -21,7 +21,7 @@
#pragma once
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "converting_mutation_partition_applier.hh"
// A StreamedMutationTransformer which transforms the stream to a different schema

View File

@@ -24,7 +24,7 @@
#include <seastar/tests/test-utils.hh>
#include "mutation.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "mutation_source_test.hh"
#include "flat_mutation_reader.hh"
#include "mutation_reader.hh"

View File

@@ -24,7 +24,7 @@
#include <seastar/tests/test-utils.hh>
#include "mutation_source_test.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "frozen_mutation.hh"
#include "tests/test_services.hh"
#include "schema_builder.hh"

View File

@@ -26,10 +26,9 @@
#include "make_random_string.hh"
#include "schema.hh"
#include "keys.hh"
#include "streamed_mutation.hh"
#include "mutation_fragment.hh"
#include "mutation.hh"
#include "schema_builder.hh"
#include "streamed_mutation.hh"
#include "sstable_utils.hh"
// Helper for working with the following table: