2021-08-11 19:09:51 +00:00
|
|
|
#pragma once
|
|
|
|
#include <Functions/FunctionsConversion.h>
|
2022-12-21 21:21:30 +00:00
|
|
|
#include <Interpreters/parseColumnsListForTableFunction.h>
|
2021-08-11 19:09:51 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2021-08-12 06:34:57 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
}
|
|
|
|
|
2022-08-26 19:27:30 +00:00
|
|
|
/** CastInternal does not preserve nullability of the data type,
|
|
|
|
* i.e. CastInternal(toNullable(toInt8(1)) as Int32) will be Int32(1).
|
|
|
|
*
|
|
|
|
* Cast preserves nullability according to setting `cast_keep_nullable`,
|
|
|
|
* i.e. Cast(toNullable(toInt8(1)) as Int32) will be Nullable(Int32(1)) if `cast_keep_nullable` == 1.
|
|
|
|
*/
|
|
|
|
template <CastType cast_type, bool internal, typename CastName, typename FunctionName>
|
2021-08-11 19:09:51 +00:00
|
|
|
class CastOverloadResolverImpl : public IFunctionOverloadResolver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using MonotonicityForRange = FunctionCastBase::MonotonicityForRange;
|
|
|
|
using Diagnostic = FunctionCastBase::Diagnostic;
|
|
|
|
|
|
|
|
static constexpr auto name = cast_type == CastType::accurate
|
|
|
|
? CastName::accurate_cast_name
|
|
|
|
: (cast_type == CastType::accurateOrNull ? CastName::accurate_cast_or_null_name : CastName::cast_name);
|
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override { return 2; }
|
|
|
|
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {1}; }
|
|
|
|
|
2023-01-04 16:11:06 +00:00
|
|
|
explicit CastOverloadResolverImpl(ContextPtr context_, std::optional<Diagnostic> diagnostic_, bool keep_nullable_, const DataTypeValidationSettings & data_type_validation_settings_)
|
2022-11-25 15:57:49 +00:00
|
|
|
: context(context_)
|
|
|
|
, diagnostic(std::move(diagnostic_))
|
2022-03-12 17:12:05 +00:00
|
|
|
, keep_nullable(keep_nullable_)
|
2022-12-21 21:21:30 +00:00
|
|
|
, data_type_validation_settings(data_type_validation_settings_)
|
2021-08-11 19:09:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static FunctionOverloadResolverPtr create(ContextPtr context)
|
|
|
|
{
|
2022-03-12 17:12:05 +00:00
|
|
|
const auto & settings_ref = context->getSettingsRef();
|
|
|
|
|
2021-08-11 19:09:51 +00:00
|
|
|
if constexpr (internal)
|
2022-11-25 15:57:49 +00:00
|
|
|
return createImpl(context, {}, false /*keep_nullable*/);
|
2022-03-12 17:12:05 +00:00
|
|
|
|
2023-01-04 16:11:06 +00:00
|
|
|
return createImpl(context, {}, settings_ref.cast_keep_nullable, DataTypeValidationSettings(settings_ref));
|
2021-08-11 19:09:51 +00:00
|
|
|
}
|
|
|
|
|
2023-01-04 16:11:06 +00:00
|
|
|
static FunctionOverloadResolverPtr createImpl(ContextPtr context, std::optional<Diagnostic> diagnostic = {}, bool keep_nullable = false, const DataTypeValidationSettings & data_type_validation_settings = {})
|
2021-08-11 19:09:51 +00:00
|
|
|
{
|
|
|
|
assert(!internal || !keep_nullable);
|
2023-01-04 16:11:06 +00:00
|
|
|
return std::make_unique<CastOverloadResolverImpl>(context, std::move(diagnostic), keep_nullable, data_type_validation_settings);
|
2022-11-25 15:57:49 +00:00
|
|
|
}
|
|
|
|
|
2023-01-04 16:11:06 +00:00
|
|
|
static FunctionOverloadResolverPtr createImpl(std::optional<Diagnostic> diagnostic = {}, bool keep_nullable = false, const DataTypeValidationSettings & data_type_validation_settings = {})
|
2022-11-25 15:57:49 +00:00
|
|
|
{
|
|
|
|
assert(!internal || !keep_nullable);
|
2023-01-04 16:11:06 +00:00
|
|
|
return std::make_unique<CastOverloadResolverImpl>(ContextPtr(), std::move(diagnostic), keep_nullable, data_type_validation_settings);
|
2021-08-11 19:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
FunctionBasePtr buildImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & return_type) const override
|
|
|
|
{
|
|
|
|
DataTypes data_types(arguments.size());
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arguments.size(); ++i)
|
|
|
|
data_types[i] = arguments[i].type;
|
|
|
|
|
|
|
|
auto monotonicity = MonotonicityHelper::getMonotonicityInformation(arguments.front().type, return_type.get());
|
2022-11-25 15:57:49 +00:00
|
|
|
return std::make_unique<FunctionCast<FunctionName>>(context, name, std::move(monotonicity), data_types, return_type, diagnostic, cast_type);
|
2021-08-11 19:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
|
|
|
|
{
|
|
|
|
const auto & column = arguments.back().column;
|
|
|
|
if (!column)
|
2023-01-23 21:13:58 +00:00
|
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Second argument to {} must be a constant string describing type. "
|
|
|
|
"Instead there is non-constant column of type {}", getName(), arguments.back().type->getName());
|
2021-08-11 19:09:51 +00:00
|
|
|
|
|
|
|
const auto * type_col = checkAndGetColumnConst<ColumnString>(column.get());
|
|
|
|
if (!type_col)
|
2023-01-23 21:13:58 +00:00
|
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Second argument to {} must be a constant string describing type. "
|
|
|
|
"Instead there is a column with the following structure: {}", getName(), column->dumpStructure());
|
2021-08-11 19:09:51 +00:00
|
|
|
|
|
|
|
DataTypePtr type = DataTypeFactory::instance().get(type_col->getValue<String>());
|
2022-12-21 21:21:30 +00:00
|
|
|
validateDataType(type, data_type_validation_settings);
|
2021-08-11 19:09:51 +00:00
|
|
|
|
|
|
|
if constexpr (cast_type == CastType::accurateOrNull)
|
|
|
|
return makeNullable(type);
|
|
|
|
|
|
|
|
if constexpr (internal)
|
|
|
|
return type;
|
|
|
|
|
|
|
|
if (keep_nullable && arguments.front().type->isNullable() && type->canBeInsideNullable())
|
|
|
|
return makeNullable(type);
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
2022-05-12 15:15:31 +00:00
|
|
|
bool useDefaultImplementationForNothing() const override { return false; }
|
2021-08-11 19:09:51 +00:00
|
|
|
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
|
|
|
|
|
|
|
|
private:
|
2022-11-25 15:57:49 +00:00
|
|
|
ContextPtr context;
|
2021-08-11 19:09:51 +00:00
|
|
|
std::optional<Diagnostic> diagnostic;
|
|
|
|
bool keep_nullable;
|
2022-12-21 21:21:30 +00:00
|
|
|
DataTypeValidationSettings data_type_validation_settings;
|
2021-08-11 19:09:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct CastOverloadName
|
|
|
|
{
|
|
|
|
static constexpr auto cast_name = "CAST";
|
|
|
|
static constexpr auto accurate_cast_name = "accurateCast";
|
|
|
|
static constexpr auto accurate_cast_or_null_name = "accurateCastOrNull";
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CastInternalOverloadName
|
|
|
|
{
|
|
|
|
static constexpr auto cast_name = "_CAST";
|
|
|
|
static constexpr auto accurate_cast_name = "accurate_Cast";
|
|
|
|
static constexpr auto accurate_cast_or_null_name = "accurate_CastOrNull";
|
|
|
|
};
|
|
|
|
|
2022-03-12 17:12:05 +00:00
|
|
|
template <CastType cast_type>
|
|
|
|
using CastOverloadResolver = CastOverloadResolverImpl<cast_type, false, CastOverloadName, CastName>;
|
|
|
|
|
|
|
|
template <CastType cast_type>
|
|
|
|
using CastInternalOverloadResolver = CastOverloadResolverImpl<cast_type, true, CastInternalOverloadName, CastInternalName>;
|
2021-08-11 19:09:51 +00:00
|
|
|
|
|
|
|
}
|