mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
69 lines
1.9 KiB
C++
69 lines
1.9 KiB
C++
#pragma once
|
|
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Columns/ColumnLowCardinality.h>
|
|
#include <DataTypes/DataTypeLowCardinality.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** materialize(x) - materialize the constant
|
|
*/
|
|
class FunctionMaterialize : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "materialize";
|
|
static FunctionPtr create(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionMaterialize>();
|
|
}
|
|
|
|
bool useDefaultImplementationForNulls() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/// Get the function name.
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
bool isInjective(const ColumnsWithTypeAndName & /*sample_columns*/) const override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
|
|
|
|
bool isSuitableForConstantFolding() const override { return false; }
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
{
|
|
return arguments[0];
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t /*input_rows_count*/) const override
|
|
{
|
|
return arguments[0].column->convertToFullColumnIfConst();
|
|
}
|
|
|
|
bool hasInformationAboutMonotonicity() const override { return true; }
|
|
|
|
Monotonicity getMonotonicityForRange(const IDataType &, const Field &, const Field &) const override
|
|
{
|
|
/// Depending on the argument the function materialize() is either a constant or works as identity().
|
|
/// In both cases this function is monotonic and non-decreasing.
|
|
return {.is_monotonic = true, .is_always_monotonic = true};
|
|
}
|
|
};
|
|
|
|
}
|