mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
#include <Interpreters/castColumn.h>
|
|
#include <Functions/CastOverloadResolver.h>
|
|
#include <Functions/IFunction.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <DataTypes/DataTypeNullable.h>
|
|
#include <Core/ColumnsWithTypeAndName.h>
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
static ColumnPtr castColumn(CastType cast_type, const ColumnWithTypeAndName & arg, const DataTypePtr & type, InternalCastFunctionCache * cache = nullptr)
|
|
{
|
|
if (arg.type->equals(*type) && cast_type != CastType::accurateOrNull)
|
|
return arg.column;
|
|
|
|
const auto from_name = arg.type->getName();
|
|
const auto to_name = type->getName();
|
|
ColumnsWithTypeAndName arguments
|
|
{
|
|
arg,
|
|
{
|
|
DataTypeString().createColumnConst(arg.column->size(), to_name),
|
|
std::make_shared<DataTypeString>(),
|
|
""
|
|
}
|
|
};
|
|
auto get_cast_func = [cast_type, &arguments]
|
|
{
|
|
|
|
FunctionOverloadResolverPtr func_builder_cast = createInternalCastOverloadResolver(cast_type, {});
|
|
return func_builder_cast->build(arguments);
|
|
};
|
|
|
|
FunctionBasePtr func_cast = cache ? cache->getOrSet(cast_type, from_name, to_name, std::move(get_cast_func)) : get_cast_func();
|
|
|
|
if (cast_type == CastType::accurateOrNull)
|
|
return func_cast->execute(arguments, makeNullable(type), arg.column->size());
|
|
else
|
|
return func_cast->execute(arguments, type, arg.column->size());
|
|
}
|
|
|
|
ColumnPtr castColumn(const ColumnWithTypeAndName & arg, const DataTypePtr & type, InternalCastFunctionCache * cache)
|
|
{
|
|
return castColumn(CastType::nonAccurate, arg, type, cache);
|
|
}
|
|
|
|
ColumnPtr castColumnAccurate(const ColumnWithTypeAndName & arg, const DataTypePtr & type, InternalCastFunctionCache * cache)
|
|
{
|
|
return castColumn(CastType::accurate, arg, type, cache);
|
|
}
|
|
|
|
ColumnPtr castColumnAccurateOrNull(const ColumnWithTypeAndName & arg, const DataTypePtr & type, InternalCastFunctionCache * cache)
|
|
{
|
|
return castColumn(CastType::accurateOrNull, arg, type, cache);
|
|
}
|
|
|
|
}
|