mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
70d1adfe4b
* save format string for NetException * format exceptions * format exceptions 2 * format exceptions 3 * format exceptions 4 * format exceptions 5 * format exceptions 6 * fix * format exceptions 7 * format exceptions 8 * Update MergeTreeIndexGin.cpp * Update AggregateFunctionMap.cpp * Update AggregateFunctionMap.cpp * fix
142 lines
5.4 KiB
C++
142 lines
5.4 KiB
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/GatherUtils/GatherUtils.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
#include <DataTypes/DataTypeNullable.h>
|
|
#include <DataTypes/getLeastSupertype.h>
|
|
#include <Columns/ColumnArray.h>
|
|
#include <Columns/ColumnConst.h>
|
|
#include <Interpreters/castColumn.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
}
|
|
|
|
class FunctionArrayResize : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "arrayResize";
|
|
static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionArrayResize>(); }
|
|
|
|
String getName() const override { return name; }
|
|
|
|
bool isVariadic() const override { return true; }
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
{
|
|
const size_t number_of_arguments = arguments.size();
|
|
|
|
if (number_of_arguments < 2 || number_of_arguments > 3)
|
|
throw Exception(ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH,
|
|
"Number of arguments for function {} doesn't match: passed {}, should be 2 or 3",
|
|
getName(), number_of_arguments);
|
|
|
|
if (arguments[0]->onlyNull())
|
|
return arguments[0];
|
|
|
|
const auto * array_type = typeid_cast<const DataTypeArray *>(arguments[0].get());
|
|
if (!array_type)
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
|
|
"First argument for function {} must be an array but it has type {}.",
|
|
getName(), arguments[0]->getName());
|
|
|
|
if (WhichDataType(array_type->getNestedType()).isNothing())
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Function {} cannot resize {}", getName(), array_type->getName());
|
|
|
|
if (!isInteger(removeNullable(arguments[1])) && !arguments[1]->onlyNull())
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
|
|
"Argument {} for function {} must be integer but it has type {}.",
|
|
toString(1), getName(), arguments[1]->getName());
|
|
|
|
if (number_of_arguments == 2)
|
|
return arguments[0];
|
|
else /* if (number_of_arguments == 3) */
|
|
return std::make_shared<DataTypeArray>(getLeastSupertype(DataTypes{array_type->getNestedType(), arguments[2]}));
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & return_type, size_t input_rows_count) const override
|
|
{
|
|
if (return_type->onlyNull())
|
|
return return_type->createColumnConstWithDefaultValue(input_rows_count);
|
|
|
|
auto result_column = return_type->createColumn();
|
|
|
|
auto array_column = arguments[0].column;
|
|
auto size_column = arguments[1].column;
|
|
|
|
if (!arguments[0].type->equals(*return_type))
|
|
array_column = castColumn(arguments[0], return_type);
|
|
|
|
const DataTypePtr & return_nested_type = typeid_cast<const DataTypeArray &>(*return_type).getNestedType();
|
|
size_t size = array_column->size();
|
|
|
|
ColumnPtr appended_column;
|
|
if (arguments.size() == 3)
|
|
{
|
|
appended_column = arguments[2].column;
|
|
if (!arguments[2].type->equals(*return_nested_type))
|
|
appended_column = castColumn(arguments[2], return_nested_type);
|
|
}
|
|
else
|
|
appended_column = return_nested_type->createColumnConstWithDefaultValue(size);
|
|
|
|
std::unique_ptr<GatherUtils::IArraySource> array_source;
|
|
std::unique_ptr<GatherUtils::IValueSource> value_source;
|
|
|
|
bool is_const = false;
|
|
|
|
if (const auto * const_array_column = typeid_cast<const ColumnConst *>(array_column.get()))
|
|
{
|
|
is_const = true;
|
|
array_column = const_array_column->getDataColumnPtr();
|
|
}
|
|
|
|
if (const auto * argument_column_array = typeid_cast<const ColumnArray *>(array_column.get()))
|
|
array_source = GatherUtils::createArraySource(*argument_column_array, is_const, size);
|
|
else
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "First arguments for function {} must be array.", getName());
|
|
|
|
|
|
bool is_appended_const = false;
|
|
if (const auto * const_appended_column = typeid_cast<const ColumnConst *>(appended_column.get()))
|
|
{
|
|
is_appended_const = true;
|
|
appended_column = const_appended_column->getDataColumnPtr();
|
|
}
|
|
|
|
value_source = GatherUtils::createValueSource(*appended_column, is_appended_const, size);
|
|
|
|
auto sink = GatherUtils::createArraySink(typeid_cast<ColumnArray &>(*result_column), size);
|
|
|
|
if (isColumnConst(*size_column))
|
|
GatherUtils::resizeConstantSize(*array_source, *value_source, *sink, size_column->getInt(0));
|
|
else
|
|
GatherUtils::resizeDynamicSize(*array_source, *value_source, *sink, *size_column);
|
|
|
|
return result_column;
|
|
}
|
|
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
|
};
|
|
|
|
|
|
REGISTER_FUNCTION(ArrayResize)
|
|
{
|
|
factory.registerFunction<FunctionArrayResize>();
|
|
}
|
|
|
|
}
|