mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
#include <Interpreters/Context.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Returns server uptime in seconds.
|
|
*/
|
|
class FunctionUptime : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "uptime";
|
|
static FunctionPtr create(const Context & context)
|
|
{
|
|
return std::make_shared<FunctionUptime>(context.getUptimeSeconds());
|
|
}
|
|
|
|
explicit FunctionUptime(time_t uptime_) : uptime(uptime_)
|
|
{
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
|
|
{
|
|
return std::make_shared<DataTypeUInt32>();
|
|
}
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
|
|
{
|
|
return DataTypeUInt32().createColumnConst(input_rows_count, static_cast<UInt64>(uptime));
|
|
}
|
|
|
|
private:
|
|
time_t uptime;
|
|
};
|
|
|
|
|
|
void registerFunctionUptime(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionUptime>();
|
|
}
|
|
|
|
}
|