mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
22 lines
416 B
C++
22 lines
416 B
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Converts columns-constants to full columns ("materializes" them).
|
|
*/
|
|
class MaterializingBlockInputStream : public IBlockInputStream
|
|
{
|
|
public:
|
|
MaterializingBlockInputStream(const BlockInputStreamPtr & input);
|
|
String getName() const override;
|
|
Block getHeader() const override;
|
|
|
|
protected:
|
|
Block readImpl() override;
|
|
};
|
|
|
|
}
|