mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
remove BlocksListSource
This commit is contained in:
parent
6191f883a5
commit
563c4fb382
@ -1,38 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <Processors/Sources/SourceWithProgress.h>
|
||||
|
||||
|
||||
namespace DB
|
||||
{
|
||||
using BlocksListPtr = std::shared_ptr<BlocksList>;
|
||||
|
||||
/** A stream of blocks from a shared list of blocks
|
||||
*/
|
||||
class BlocksListSource : public SourceWithProgress
|
||||
{
|
||||
public:
|
||||
BlocksListSource(const BlocksListPtr & blocks_ptr_, Block header)
|
||||
: SourceWithProgress(std::move(header))
|
||||
, blocks(blocks_ptr_), it(blocks_ptr_->begin()), end(blocks_ptr_->end()) {}
|
||||
|
||||
String getName() const override { return "BlocksList"; }
|
||||
|
||||
protected:
|
||||
Chunk generate() override
|
||||
{
|
||||
if (it == end)
|
||||
return {};
|
||||
|
||||
Block res = *it;
|
||||
++it;
|
||||
return Chunk(res.getColumns(), res.rows());
|
||||
}
|
||||
|
||||
private:
|
||||
BlocksListPtr blocks;
|
||||
BlocksList::iterator it;
|
||||
const BlocksList::iterator end;
|
||||
};
|
||||
|
||||
}
|
@ -37,7 +37,6 @@
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <Common/typeid_cast.h>
|
||||
|
||||
#include <Storages/WindowView/BlocksListSource.h>
|
||||
#include <Storages/WindowView/ReplaceWindowColumnBlockInputStream.h>
|
||||
#include <Storages/WindowView/StorageWindowView.h>
|
||||
#include <Storages/WindowView/WatermarkBlockInputStream.h>
|
||||
|
Loading…
Reference in New Issue
Block a user