#pragma once #include #include #include #include #include #include namespace DB { /** Записывает данные в указанную таблицу, при этом рекурсивно вызываясь от всех зависимых вьюшек. * Если вьюшка не материализованная, то в нее данные не записываются, лишь перенаправляются дальше. */ class PushingToViewsBlockOutputStream : public IBlockOutputStream { public: PushingToViewsBlockOutputStream(String database, String table, const Context & context_, ASTPtr query_ptr_) : context(context_), query_ptr(query_ptr_) { storage = context.getTable(database, table); addTableLock(storage->lockStructure(true)); Dependencies dependencies = context.getDependencies(database, table); for (size_t i = 0; i < dependencies.size(); ++i) { children.push_back(new PushingToViewsBlockOutputStream(dependencies[i].first, dependencies[i].second, context, ASTPtr())); queries.push_back(dynamic_cast(*context.getTable(dependencies[i].first, dependencies[i].second)).getInnerQuery()); } if (storage->getName() != "View") output = storage->write(query_ptr); } void write(const Block & block) override { for (size_t i = 0; i < children.size(); ++i) { BlockInputStreamPtr from = new OneBlockInputStream(block); InterpreterSelectQuery select(queries[i], context, QueryProcessingStage::Complete, 0, from); BlockInputStreamPtr data = new MaterializingBlockInputStream(select.execute()); copyData(*data, *children[i]); } if (output) output->write(block); } void writePrefix() override { if (output) output->writePrefix(); } void writeSuffix() override { if (output) output->writeSuffix(); } private: StoragePtr storage; BlockOutputStreamPtr output; Context context; ASTPtr query_ptr; std::vector children; std::vector queries; }; }