ClickHouse/src/Functions/logTrace.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2.0 KiB
C++
Raw Normal View History

2020-10-10 02:48:15 +00:00
#include <Columns/ColumnConst.h>
#include <Columns/ColumnString.h>
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypesNumber.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionHelpers.h>
2021-05-17 07:30:42 +00:00
#include <Functions/IFunction.h>
2020-10-10 02:48:15 +00:00
2022-04-27 15:05:45 +00:00
#include <Common/logger_useful.h>
2020-10-10 02:48:15 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
namespace
{
class FunctionLogTrace : public IFunction
{
public:
static constexpr auto name = "logTrace";
2021-06-01 12:20:52 +00:00
static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionLogTrace>(); }
2020-10-10 02:48:15 +00:00
String getName() const override { return name; }
size_t getNumberOfArguments() const override { return 1; }
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
2020-10-10 02:48:15 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
{
if (!isString(arguments[0]))
throw Exception(
"Illegal type " + arguments[0]->getName() + " of argument of function " + getName(),
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
return std::make_shared<DataTypeUInt8>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
2020-10-10 02:48:15 +00:00
{
String message;
2020-10-19 15:27:41 +00:00
if (const ColumnConst * col = checkAndGetColumnConst<ColumnString>(arguments[0].column.get()))
2020-10-10 02:48:15 +00:00
message = col->getDataAt(0).data;
else
throw Exception(
"First argument for function " + getName() + " must be Constant string", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
2020-10-10 08:02:04 +00:00
static auto * log = &Poco::Logger::get("FunctionLogTrace");
LOG_TRACE(log, fmt::runtime(message));
2020-10-10 02:48:15 +00:00
2020-10-19 15:27:41 +00:00
return DataTypeUInt8().createColumnConst(input_rows_count, 0);
2020-10-10 02:48:15 +00:00
}
};
}
REGISTER_FUNCTION(LogTrace)
2020-10-10 02:48:15 +00:00
{
factory.registerFunction<FunctionLogTrace>();
}
}