they are part of the CQL type system, and are "closer" to types.
let's move them into "types" directory.
the building systems are updated accordingly.
the source files referencing `types.hh` were updated using following
command:
```
find . -name "*.{cc,hh}" -exec sed -i 's/\"types.hh\"/\"types\/types.hh\"/' {} +
```
the source files under sstables include "types.hh", which is
indeed the one located under "sstables", so include "sstables/types.hh"
instea, so it's more explicit.
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
Closes #12926
30 lines
633 B
C++
30 lines
633 B
C++
/*
|
|
* Copyright (C) 2018-present ScyllaDB
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "sstables/types.hh"
|
|
#include "version.hh"
|
|
#include "component_type.hh"
|
|
|
|
namespace sstables {
|
|
|
|
class sstable_version_constants {
|
|
public:
|
|
using component_map_t = std::unordered_map<component_type, sstring, enum_hash<component_type>>;
|
|
static const sstring TOC_SUFFIX;
|
|
static const sstring TEMPORARY_TOC_SUFFIX;
|
|
static const component_map_t& get_component_map(sstable_version_types);
|
|
sstable_version_constants() = delete;
|
|
protected:
|
|
static component_map_t create_component_map();
|
|
};
|
|
|
|
}
|