mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Every function in its own file, part 2 [#CLICKHOUSE-2]
This commit is contained in:
parent
ba152a5059
commit
b695a6bec5
@ -11,32 +11,6 @@
|
||||
namespace DB
|
||||
{
|
||||
|
||||
/** Creates an array, multiplying the column (the first argument) by the number of elements in the array (the second argument).
|
||||
*/
|
||||
class FunctionReplicate : public IFunction
|
||||
{
|
||||
public:
|
||||
static constexpr auto name = "replicate";
|
||||
static FunctionPtr create(const Context & context);
|
||||
|
||||
String getName() const override
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
size_t getNumberOfArguments() const override
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
bool useDefaultImplementationForNulls() const override { return false; }
|
||||
|
||||
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override;
|
||||
|
||||
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override;
|
||||
};
|
||||
|
||||
|
||||
/// Executes expression. Uses for lambda functions implementation. Can't be created from factory.
|
||||
class FunctionExpression : public IFunctionBase, public IPreparedFunction,
|
||||
public std::enable_shared_from_this<FunctionExpression>
|
||||
|
@ -39,7 +39,6 @@ void registerFunctionFinalizeAggregation(FunctionFactory &);
|
||||
void registerFunctionToLowCardinality(FunctionFactory &);
|
||||
void registerFunctionLowCardinalityIndices(FunctionFactory &);
|
||||
void registerFunctionLowCardinalityKeys(FunctionFactory &);
|
||||
void registerFunctionsReplicate(FunctionFactory &);
|
||||
void registerFunctionsIn(FunctionFactory &);
|
||||
|
||||
void registerFunctionsMiscellaneous(FunctionFactory & factory)
|
||||
@ -80,7 +79,6 @@ void registerFunctionsMiscellaneous(FunctionFactory & factory)
|
||||
registerFunctionToLowCardinality(factory);
|
||||
registerFunctionLowCardinalityIndices(factory);
|
||||
registerFunctionLowCardinalityKeys(factory);
|
||||
registerFunctionReplicate(factory);
|
||||
registerFunctionsIn(factory);
|
||||
}
|
||||
|
||||
|
67
dbms/src/Functions/replicate.cpp
Normal file
67
dbms/src/Functions/replicate.cpp
Normal file
@ -0,0 +1,67 @@
|
||||
#include <Functions/IFunction.h>
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionHelpers.h>
|
||||
#include <DataTypes/DataTypeArray.h>
|
||||
#include <Columns/ColumnArray.h>
|
||||
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
||||
/** Creates an array, multiplying the column (the first argument) by the number of elements in the array (the second argument).
|
||||
*/
|
||||
class FunctionReplicate : public IFunction
|
||||
{
|
||||
public:
|
||||
static constexpr auto name = "replicate";
|
||||
|
||||
static FunctionPtr create(const Context &)
|
||||
{
|
||||
return std::make_shared<FunctionReplicate>();
|
||||
}
|
||||
|
||||
String getName() const override
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
size_t getNumberOfArguments() const override
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
bool useDefaultImplementationForNulls() const override { return false; }
|
||||
|
||||
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
||||
{
|
||||
const DataTypeArray * array_type = checkAndGetDataType<DataTypeArray>(arguments[1].get());
|
||||
if (!array_type)
|
||||
throw Exception("Second argument for function " + getName() + " must be array.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
||||
return std::make_shared<DataTypeArray>(arguments[0]);
|
||||
}
|
||||
|
||||
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t) override
|
||||
{
|
||||
ColumnPtr first_column = block.getByPosition(arguments[0]).column;
|
||||
const ColumnArray * array_column = checkAndGetColumn<ColumnArray>(block.getByPosition(arguments[1]).column.get());
|
||||
ColumnPtr temp_column;
|
||||
if (!array_column)
|
||||
{
|
||||
auto const_array_column = checkAndGetColumnConst<ColumnArray>(block.getByPosition(arguments[1]).column.get());
|
||||
if (!const_array_column)
|
||||
throw Exception("Unexpected column for replicate", ErrorCodes::ILLEGAL_COLUMN);
|
||||
temp_column = const_array_column->convertToFullColumn();
|
||||
array_column = checkAndGetColumn<ColumnArray>(temp_column.get());
|
||||
}
|
||||
block.getByPosition(result).column
|
||||
= ColumnArray::create(first_column->replicate(array_column->getOffsets()), array_column->getOffsetsPtr());
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
void registerFunctionReplicate(FunctionFactory & factory)
|
||||
{
|
||||
factory.registerFunction<FunctionReplicate>();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user