ClickHouse/src/Functions/hasThreadFuzzer.cpp

56 lines
1.3 KiB
C++
Raw Normal View History

2020-07-06 03:21:29 +00:00
#include <Common/ThreadFuzzer.h>
#include <Functions/FunctionFactory.h>
#include <DataTypes/DataTypesNumber.h>
#include <Core/Field.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
2020-07-06 03:21:29 +00:00
/** Returns whether Thread Fuzzer is effective.
* It can be used in tests to prevent too long runs.
*/
class FunctionHasThreadFuzzer : public IFunction
{
public:
static constexpr auto name = "hasThreadFuzzer";
2021-06-01 12:20:52 +00:00
static FunctionPtr create(ContextPtr)
2020-07-06 03:21:29 +00:00
{
return std::make_shared<FunctionHasThreadFuzzer>();
}
String getName() const override
{
return name;
}
size_t getNumberOfArguments() const override
{
return 0;
}
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
2020-07-06 03:21:29 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
{
return std::make_shared<DataTypeUInt8>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
2020-07-06 03:21:29 +00:00
{
2020-10-19 13:42:14 +00:00
return DataTypeUInt8().createColumnConst(input_rows_count, ThreadFuzzer::instance().isEffective());
2020-07-06 03:21:29 +00:00
}
};
2020-09-07 18:00:37 +00:00
}
2020-07-06 03:21:29 +00:00
void registerFunctionHasThreadFuzzer(FunctionFactory & factory)
{
factory.registerFunction<FunctionHasThreadFuzzer>();
}
}