#pragma once #include #include #include #include namespace DB { class StorageView final : public ext::shared_ptr_helper, public IStorage { friend struct ext::shared_ptr_helper; public: std::string getName() const override { return "View"; } bool isView() const override { return true; } /// It is passed inside the query and solved at its level. bool supportsSampling() const override { return true; } bool supportsFinal() const override { return true; } Pipes read( const Names & column_names, const SelectQueryInfo & query_info, const Context & context, QueryProcessingStage::Enum processed_stage, size_t max_block_size, unsigned num_streams) override; ASTPtr getRuntimeViewQuery(const ASTSelectQuery & outer_query, const Context & context); ASTPtr getRuntimeViewQuery(ASTSelectQuery * outer_query, const Context & context, bool normalize); private: ASTPtr inner_query; protected: StorageView( const StorageID & table_id_, const ASTCreateQuery & query, const ColumnsDescription & columns_); }; }