mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
15 lines
246 B
C++
15 lines
246 B
C++
#pragma once
|
|
#include <Processors/Chunk.h>
|
|
#include <Common/PODArray.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// ChunkInfo with IColumn::Selector. It is added by AddingSelectorTransform.
|
|
struct SelectorInfo : public ChunkInfo
|
|
{
|
|
IColumn::Selector selector;
|
|
};
|
|
|
|
}
|