blob: 0025d38c8f2392dc22fe9f194987e93ae54fb3f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include <Functions/IFunction.h>
#include <Functions/FunctionFactory.h>
#include <DataTypes/DataTypeLowCardinality.h>
#include <DataTypes/DataTypeString.h>
#include <Columns/ColumnString.h>
#include <Common/ErrorCodes.h>
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
/** errorCodeToName() - returns the variable name for the error code.
*/
class FunctionErrorCodeToName : public IFunction
{
public:
static constexpr auto name = "errorCodeToName";
static FunctionPtr create(ContextPtr)
{
return std::make_shared<FunctionErrorCodeToName>();
}
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 false; }
DataTypePtr getReturnTypeImpl(const DataTypes & types) const override
{
if (!isNumber(types.at(0)))
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The argument of function {} must have simple numeric type, possibly Nullable", name);
return std::make_shared<DataTypeLowCardinality>(std::make_shared<DataTypeString>());
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & res_type, size_t input_rows_count) const override
{
const auto & input_column = *arguments[0].column;
auto col_res = res_type->createColumn();
for (size_t i = 0; i < input_rows_count; ++i)
{
const Int64 error_code = input_column.getInt(i);
std::string_view error_name =
ErrorCodes::getName(static_cast<ErrorCodes::ErrorCode>(error_code));
col_res->insertData(error_name.data(), error_name.size());
}
return col_res;
}
};
REGISTER_FUNCTION(ErrorCodeToName)
{
factory.registerFunction<FunctionErrorCodeToName>();
}
}
|