mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
138 lines
4.6 KiB
C++
138 lines
4.6 KiB
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
#include <DataTypes/IDataType.h>
|
|
#include <DataTypes/DataTypeTuple.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Columns/ColumnTuple.h>
|
|
#include <Columns/ColumnArray.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <Common/assert_cast.h>
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
/** Transform a named tuple into an array of pairs, where the first element
|
|
* of the pair corresponds to the tuple field name and the second one to the
|
|
* tuple value.
|
|
*/
|
|
class FunctionTupleToNameValuePairs : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "tupleToNameValuePairs";
|
|
static FunctionPtr create(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionTupleToNameValuePairs>();
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
|
|
{
|
|
// get the type of all the fields in the tuple
|
|
const IDataType * col = arguments[0].type.get();
|
|
const DataTypeTuple * tuple = checkAndGetDataType<DataTypeTuple>(col);
|
|
|
|
if (!tuple)
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
|
|
"First argument for function {} must be a tuple.",
|
|
getName());
|
|
|
|
const auto & element_types = tuple->getElements();
|
|
|
|
if (element_types.empty())
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
|
|
"The argument tuple for function {} must not be empty.",
|
|
getName());
|
|
|
|
const auto & first_element_type = element_types[0];
|
|
|
|
bool all_value_types_equal = std::all_of(element_types.begin() + 1,
|
|
element_types.end(),
|
|
[&](const auto &other)
|
|
{
|
|
return first_element_type->equals(*other);
|
|
});
|
|
|
|
if (!all_value_types_equal)
|
|
{
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
|
|
"The argument tuple for function {} must contain just one type.",
|
|
getName());
|
|
}
|
|
|
|
DataTypePtr tuple_name_type = std::make_shared<DataTypeString>();
|
|
DataTypes item_data_types = {tuple_name_type,
|
|
first_element_type};
|
|
|
|
auto item_data_type = std::make_shared<DataTypeTuple>(item_data_types);
|
|
|
|
return std::make_shared<DataTypeArray>(item_data_type);
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t /*input_rows_count*/) const override
|
|
{
|
|
const IColumn * tuple_col = arguments[0].column.get();
|
|
const DataTypeTuple * tuple = checkAndGetDataType<DataTypeTuple>(arguments[0].type.get());
|
|
const auto * tuple_col_concrete = assert_cast<const ColumnTuple*>(tuple_col);
|
|
|
|
auto keys = ColumnString::create();
|
|
MutableColumnPtr values = tuple_col_concrete->getColumn(0).cloneEmpty();
|
|
auto offsets = ColumnVector<UInt64>::create();
|
|
for (size_t row = 0; row < tuple_col_concrete->size(); ++row)
|
|
{
|
|
for (size_t col = 0; col < tuple_col_concrete->tupleSize(); ++col)
|
|
{
|
|
const std::string & key = tuple->getElementNames()[col];
|
|
const IColumn & value_column = tuple_col_concrete->getColumn(col);
|
|
|
|
values->insertFrom(value_column, row);
|
|
keys->insertData(key.data(), key.size());
|
|
}
|
|
offsets->insertValue(tuple_col_concrete->tupleSize() * (row + 1));
|
|
}
|
|
|
|
std::vector<ColumnPtr> tuple_columns = { std::move(keys), std::move(values) };
|
|
auto tuple_column = ColumnTuple::create(std::move(tuple_columns));
|
|
return ColumnArray::create(std::move(tuple_column), std::move(offsets));
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(TupleToNameValuePairs)
|
|
{
|
|
factory.registerFunction<FunctionTupleToNameValuePairs>();
|
|
}
|
|
|
|
}
|