ClickHouse/src/Storages/StorageDictionary.h

71 lines
2.1 KiB
C++
Raw Normal View History

2017-04-25 09:10:27 +00:00
#pragma once
#include <Storages/IStorage.h>
#include <ext/shared_ptr_helper.h>
2017-04-25 09:10:27 +00:00
namespace DB
{
struct DictionaryStructure;
2017-04-25 09:10:27 +00:00
class StorageDictionary final : public ext::shared_ptr_helper<StorageDictionary>, public IStorage
2017-04-25 09:10:27 +00:00
{
2019-08-26 19:07:29 +00:00
friend struct ext::shared_ptr_helper<StorageDictionary>;
2017-04-25 09:10:27 +00:00
public:
std::string getName() const override { return "Dictionary"; }
void checkTableCanBeDropped() const override;
2020-08-03 13:54:14 +00:00
Pipe read(
const Names & column_names,
const StorageMetadataPtr & /*metadata_snapshot*/,
SelectQueryInfo & query_info,
2017-04-25 09:10:27 +00:00
const Context & context,
QueryProcessingStage::Enum processed_stage,
2020-02-20 14:40:58 +00:00
size_t max_block_size,
unsigned threads) override;
static NamesAndTypesList getNamesAndTypes(const DictionaryStructure & dictionary_structure);
static String generateNamesAndTypesDescription(const NamesAndTypesList & list);
2020-09-22 11:56:40 +00:00
const String & dictionaryName() const { return dictionary_name; }
String resolvedDictionaryName() const;
2020-04-08 18:59:52 +00:00
/// Specifies where the table is located relative to the dictionary.
enum class Location
{
2020-07-05 15:44:28 +00:00
/// Table was created automatically as an element of a database with the Dictionary engine.
DictionaryDatabase,
/// Table was created automatically along with a dictionary
/// and has the same database and name as the dictionary.
/// It provides table-like access to the dictionary.
/// User cannot drop that table.
SameDatabaseAndNameAsDictionary,
/// Table was created explicitly by a statement like
/// CREATE TABLE ... ENGINE=Dictionary
2020-07-05 15:45:05 +00:00
/// User chose the table's database and name and can drop that table.
Custom,
};
2017-04-25 09:10:27 +00:00
private:
const String dictionary_name;
const Location location;
2017-04-28 18:33:31 +00:00
protected:
StorageDictionary(
2019-12-04 16:06:55 +00:00
const StorageID & table_id_,
const String & dictionary_name_,
const ColumnsDescription & columns_,
Location location_);
StorageDictionary(
const StorageID & table_id_,
const String & dictionary_name_,
const DictionaryStructure & dictionary_structure,
Location location_);
2017-04-25 09:10:27 +00:00
};
}