blob: 5ecd8522426830df118be8c661006bb169c43063 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <Processors/ISimpleTransform.h>
namespace DB
{
/// Converts columns-constants to full columns ("materializes" them).
class MaterializingTransform : public ISimpleTransform
{
public:
explicit MaterializingTransform(const Block & header);
String getName() const override { return "MaterializingTransform"; }
protected:
void transform(Chunk & chunk) override;
};
}
|