2020-10-14 12:19:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Processors/Pipe.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class StorageProxy : public IStorage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2021-03-16 18:41:29 +00:00
|
|
|
explicit StorageProxy(const StorageID & table_id_) : IStorage(table_id_) {}
|
2020-10-14 12:19:29 +00:00
|
|
|
|
|
|
|
virtual StoragePtr getNested() const = 0;
|
|
|
|
|
|
|
|
String getName() const override { return "StorageProxy"; }
|
|
|
|
|
|
|
|
bool isRemote() const override { return getNested()->isRemote(); }
|
|
|
|
bool isView() const override { return getNested()->isView(); }
|
|
|
|
bool supportsSampling() const override { return getNested()->supportsSampling(); }
|
|
|
|
bool supportsFinal() const override { return getNested()->supportsFinal(); }
|
|
|
|
bool supportsPrewhere() const override { return getNested()->supportsPrewhere(); }
|
|
|
|
bool supportsReplication() const override { return getNested()->supportsReplication(); }
|
|
|
|
bool supportsParallelInsert() const override { return getNested()->supportsParallelInsert(); }
|
|
|
|
bool supportsDeduplication() const override { return getNested()->supportsDeduplication(); }
|
|
|
|
bool noPushingToViews() const override { return getNested()->noPushingToViews(); }
|
|
|
|
bool hasEvenlyDistributedRead() const override { return getNested()->hasEvenlyDistributedRead(); }
|
|
|
|
|
|
|
|
ColumnSizeByName getColumnSizes() const override { return getNested()->getColumnSizes(); }
|
|
|
|
NamesAndTypesList getVirtuals() const override { return getNested()->getVirtuals(); }
|
2020-11-07 21:28:39 +00:00
|
|
|
|
|
|
|
QueryProcessingStage::Enum getQueryProcessingStage(
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context, QueryProcessingStage::Enum to_stage, SelectQueryInfo & ast) const override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
|
|
|
return getNested()->getQueryProcessingStage(context, to_stage, ast);
|
|
|
|
}
|
|
|
|
|
|
|
|
BlockInputStreams watch(
|
|
|
|
const Names & column_names,
|
|
|
|
const SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-10-14 12:19:29 +00:00
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override
|
|
|
|
{
|
|
|
|
return getNested()->watch(column_names, query_info, context, processed_stage, max_block_size, num_streams);
|
|
|
|
}
|
|
|
|
|
|
|
|
Pipe read(
|
|
|
|
const Names & column_names,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
2020-11-07 21:28:39 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-10-14 12:19:29 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override
|
|
|
|
{
|
|
|
|
return getNested()->read(column_names, metadata_snapshot, query_info, context, processed_stage, max_block_size, num_streams);
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
BlockOutputStreamPtr write(const ASTPtr & query, const StorageMetadataPtr & metadata_snapshot, ContextPtr context) override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
|
|
|
return getNested()->write(query, metadata_snapshot, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drop() override { getNested()->drop(); }
|
|
|
|
|
|
|
|
void truncate(
|
|
|
|
const ASTPtr & query,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-10-14 12:19:29 +00:00
|
|
|
TableExclusiveLockHolder & lock) override
|
|
|
|
{
|
|
|
|
getNested()->truncate(query, metadata_snapshot, context, lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rename(const String & new_path_to_table_data, const StorageID & new_table_id) override
|
|
|
|
{
|
|
|
|
getNested()->rename(new_path_to_table_data, new_table_id);
|
|
|
|
IStorage::renameInMemory(new_table_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void renameInMemory(const StorageID & new_table_id) override
|
|
|
|
{
|
|
|
|
getNested()->renameInMemory(new_table_id);
|
|
|
|
IStorage::renameInMemory(new_table_id);
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
void alter(const AlterCommands & params, ContextPtr context, TableLockHolder & alter_lock_holder) override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
|
|
|
getNested()->alter(params, context, alter_lock_holder);
|
|
|
|
IStorage::setInMemoryMetadata(getNested()->getInMemoryMetadata());
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
void checkAlterIsPossible(const AlterCommands & commands, ContextPtr context) const override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
2021-02-28 05:24:39 +00:00
|
|
|
getNested()->checkAlterIsPossible(commands, context);
|
2020-10-14 12:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pipe alterPartition(
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
const PartitionCommands & commands,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context) override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
2020-11-02 16:18:18 +00:00
|
|
|
return getNested()->alterPartition(metadata_snapshot, commands, context);
|
2020-10-14 12:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void checkAlterPartitionIsPossible(const PartitionCommands & commands, const StorageMetadataPtr & metadata_snapshot, const Settings & settings) const override
|
|
|
|
{
|
|
|
|
getNested()->checkAlterPartitionIsPossible(commands, metadata_snapshot, settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool optimize(
|
|
|
|
const ASTPtr & query,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
const ASTPtr & partition,
|
|
|
|
bool final,
|
|
|
|
bool deduplicate,
|
2020-12-01 09:10:12 +00:00
|
|
|
const Names & deduplicate_by_columns,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context) override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
2020-12-01 09:10:12 +00:00
|
|
|
return getNested()->optimize(query, metadata_snapshot, partition, final, deduplicate, deduplicate_by_columns, context);
|
2020-10-14 12:19:29 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
void mutate(const MutationCommands & commands, ContextPtr context) override { getNested()->mutate(commands, context); }
|
2020-10-14 12:19:29 +00:00
|
|
|
|
|
|
|
CancellationCode killMutation(const String & mutation_id) override { return getNested()->killMutation(mutation_id); }
|
|
|
|
|
|
|
|
void startup() override { getNested()->startup(); }
|
|
|
|
void shutdown() override { getNested()->shutdown(); }
|
|
|
|
|
|
|
|
ActionLock getActionLock(StorageActionBlockType action_type) override { return getNested()->getActionLock(action_type); }
|
|
|
|
|
|
|
|
bool supportsIndexForIn() const override { return getNested()->supportsIndexForIn(); }
|
2021-04-10 23:33:54 +00:00
|
|
|
bool mayBenefitFromIndexForIn(const ASTPtr & left_in_operand, ContextPtr query_context, const StorageMetadataPtr & metadata_snapshot) const override
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
|
|
|
return getNested()->mayBenefitFromIndexForIn(left_in_operand, query_context, metadata_snapshot);
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
CheckResults checkData(const ASTPtr & query , ContextPtr context) override { return getNested()->checkData(query, context); }
|
2020-10-14 12:19:29 +00:00
|
|
|
void checkTableCanBeDropped() const override { getNested()->checkTableCanBeDropped(); }
|
|
|
|
void checkPartitionCanBeDropped(const ASTPtr & partition) override { getNested()->checkPartitionCanBeDropped(partition); }
|
2020-11-01 17:38:43 +00:00
|
|
|
bool storesDataOnDisk() const override { return getNested()->storesDataOnDisk(); }
|
2020-10-14 12:19:29 +00:00
|
|
|
Strings getDataPaths() const override { return getNested()->getDataPaths(); }
|
|
|
|
StoragePolicyPtr getStoragePolicy() const override { return getNested()->getStoragePolicy(); }
|
2020-11-25 13:47:32 +00:00
|
|
|
std::optional<UInt64> totalRows(const Settings & settings) const override { return getNested()->totalRows(settings); }
|
|
|
|
std::optional<UInt64> totalBytes(const Settings & settings) const override { return getNested()->totalBytes(settings); }
|
2020-10-14 12:19:29 +00:00
|
|
|
std::optional<UInt64> lifetimeRows() const override { return getNested()->lifetimeRows(); }
|
|
|
|
std::optional<UInt64> lifetimeBytes() const override { return getNested()->lifetimeBytes(); }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|