#pragma once #if !defined(ARCADIA_BUILD) #include "config_core.h" #endif #if USE_MYSQL #include namespace DB { namespace ErrorCodes { extern const int NOT_IMPLEMENTED; } class StorageMaterializeMySQL final : public ext::shared_ptr_helper, public StorageProxy { friend struct ext::shared_ptr_helper; public: String getName() const override { return "MaterializeMySQL"; } StorageMaterializeMySQL(const StoragePtr & nested_storage_, const IDatabase * database_); Pipe read( const Names & column_names, const StorageMetadataPtr & metadata_snapshot, SelectQueryInfo & query_info, const Context & context, QueryProcessingStage::Enum processed_stage, size_t max_block_size, unsigned num_streams) override; BlockOutputStreamPtr write(const ASTPtr &, const StorageMetadataPtr &, const Context &) 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]] void throwNotAllowed() const { throw Exception("This method is not allowed for MaterializeMySQL", ErrorCodes::NOT_IMPLEMENTED); } StoragePtr nested_storage; const IDatabase * database; }; } #endif