ClickHouse/src/Storages/StorageMaterializedMySQL.h
Antonio Andelic b11f744252
Correctly disable async insert with deduplication when it's not needed (#50663)
* Correctly disable async insert when it's not used

* Better

* Add comment

* Better

* Fix tests

---------

Co-authored-by: Nikita Mikhaylov <mikhaylovnikitka@gmail.com>
2023-06-07 20:33:08 +02:00

57 lines
1.4 KiB
C++

#pragma once
#include "config.h"
#if USE_MYSQL
#include <Storages/StorageProxy.h>
namespace DB
{
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
class StorageMaterializedMySQL final : public StorageProxy
{
public:
StorageMaterializedMySQL(const StoragePtr & nested_storage_, const IDatabase * database_);
String getName() const override { return "MaterializedMySQL"; }
bool needRewriteQueryWithFinal(const Names & column_names) const override;
void read(
QueryPlan & query_plan,
const Names & column_names,
const StorageSnapshotPtr & metadata_snapshot,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size, size_t num_streams) override;
SinkToStoragePtr write(const ASTPtr &, const StorageMetadataPtr &, ContextPtr, bool) override { throwNotAllowed(); }
NamesAndTypesList getVirtuals() const override;
ColumnSizeByName getColumnSizes() const override;
StoragePtr getNested() const override { return nested_storage; }
void drop() override { nested_storage->drop(); }
private:
[[noreturn]] static void throwNotAllowed()
{
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "This method is not allowed for MaterializedMySQL");
}
StoragePtr nested_storage;
const IDatabase * database;
};
}
#endif