ClickHouse/src/Storages/StorageDictionary.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

106 lines
3.1 KiB
C++
Raw Normal View History

2017-04-25 09:10:27 +00:00
#pragma once
2021-04-24 11:02:25 +00:00
#include <atomic>
2017-04-25 09:10:27 +00:00
2021-04-24 11:02:25 +00:00
#include <Storages/IStorage.h>
2021-04-21 13:45:13 +00:00
#include <Interpreters/IExternalLoaderConfigRepository.h>
2017-04-25 09:10:27 +00:00
namespace DB
{
struct DictionaryStructure;
2021-03-19 12:47:27 +00:00
class TableFunctionDictionary;
2017-04-25 09:10:27 +00:00
class StorageDictionary final : public IStorage, public WithContext
2017-04-25 09:10:27 +00:00
{
friend class TableFunctionDictionary;
2017-04-25 09:10:27 +00:00
public:
/// Specifies where the table is located relative to the dictionary.
enum class Location
{
/// 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
/// User chose the table's database and name and can drop that table.
Custom,
};
StorageDictionary(
const StorageID & table_id_,
const String & dictionary_name_,
const ColumnsDescription & columns_,
const String & comment,
Location location_,
ContextPtr context_);
StorageDictionary(
const StorageID & table_id_,
const String & dictionary_name_,
const DictionaryStructure & dictionary_structure,
const String & comment,
Location location_,
ContextPtr context_);
StorageDictionary(
const StorageID & table_id_,
LoadablesConfigurationPtr dictionary_configuration_,
ContextPtr context_);
2017-04-25 09:10:27 +00:00
std::string getName() const override { return "Dictionary"; }
2021-04-22 07:53:44 +00:00
~StorageDictionary() override;
void checkTableCanBeDropped() const override;
void checkTableCanBeDetached() const override;
2020-08-03 13:54:14 +00:00
Pipe read(
const Names & column_names,
const StorageSnapshotPtr & storage_snapshot,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
2020-02-20 14:40:58 +00:00
size_t max_block_size,
size_t threads) override;
static NamesAndTypesList getNamesAndTypes(const DictionaryStructure & dictionary_structure);
static String generateNamesAndTypesDescription(const NamesAndTypesList & list);
2021-04-21 13:45:13 +00:00
bool isDictionary() const override { return true; }
2021-04-26 20:35:56 +00:00
void shutdown() override;
void startup() override;
2021-04-21 13:45:13 +00:00
void renameInMemory(const StorageID & new_table_id) override;
2021-12-28 16:41:57 +00:00
void checkAlterIsPossible(const AlterCommands & commands, ContextPtr /* context */) const override;
void alter(const AlterCommands & params, ContextPtr alter_context, AlterLockHolder &) override;
2021-04-22 07:53:44 +00:00
Poco::Timestamp getUpdateTime() const;
LoadablesConfigurationPtr getConfiguration() const;
2021-04-21 13:45:13 +00:00
String getDictionaryName() const { return dictionary_name; }
2020-04-08 18:59:52 +00:00
2017-04-25 09:10:27 +00:00
private:
String dictionary_name;
const Location location;
2017-04-28 18:33:31 +00:00
2021-04-22 07:53:44 +00:00
mutable std::mutex dictionary_config_mutex;
2021-04-21 13:45:13 +00:00
Poco::Timestamp update_time;
LoadablesConfigurationPtr configuration;
2021-04-24 11:02:25 +00:00
2021-06-15 19:55:21 +00:00
scope_guard remove_repository_callback;
2021-04-21 13:45:13 +00:00
2021-04-24 11:02:25 +00:00
void removeDictionaryConfigurationFromRepository();
2017-04-25 09:10:27 +00:00
};
}