mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
57 lines
1.4 KiB
C++
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) 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("This method is not allowed for MaterializedMySQL", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
StoragePtr nested_storage;
|
|
const IDatabase * database;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|