mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
35 lines
958 B
C++
35 lines
958 B
C++
#pragma once
|
|
|
|
#include <DB/Columns/IColumnDummy.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Set;
|
|
using ConstSetPtr = std::shared_ptr<const Set>;
|
|
|
|
|
|
/** A column containing multiple values in the `IN` section.
|
|
* Behaves like a constant-column (because the set is one, not its own for each line).
|
|
* This column has a nonstandard value, so it can not be obtained via a normal interface.
|
|
*/
|
|
class ColumnSet final : public IColumnDummy
|
|
{
|
|
public:
|
|
ColumnSet(size_t s_, ConstSetPtr data_) : IColumnDummy(s_), data(data_) {}
|
|
|
|
/// The column is not a constant. Otherwise, the column will be used in calculations in ExpressionActions::prepare, when a set from subquery is not ready yet.
|
|
bool isConst() const override { return false; }
|
|
|
|
std::string getName() const override { return "ColumnSet"; }
|
|
ColumnPtr cloneDummy(size_t s_) const override { return std::make_shared<ColumnSet>(s_, data); }
|
|
|
|
ConstSetPtr getData() const { return data; }
|
|
|
|
private:
|
|
ConstSetPtr data;
|
|
};
|
|
|
|
}
|