ClickHouse/src/Functions/now.cpp

136 lines
4.3 KiB
C++
Raw Normal View History

#include <DataTypes/DataTypeDateTime.h>
2021-05-15 17:33:15 +00:00
#include <Functions/IFunction.h>
2019-09-26 15:12:40 +00:00
#include <Core/DecimalFunctions.h>
#include <Functions/FunctionFactory.h>
2019-10-04 17:46:36 +00:00
#include <Core/Field.h>
#include <Functions/extractTimeZoneFromFunctionArguments.h>
#include <ctime>
2019-09-26 15:12:40 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
}
2020-09-07 18:00:37 +00:00
namespace
{
2020-09-07 18:00:37 +00:00
/// Get the current time. (It is a constant, it is evaluated once for the entire query.)
2021-05-15 17:33:15 +00:00
class ExecutableFunctionNow : public IExecutableFunction
{
public:
explicit ExecutableFunctionNow(time_t time_) : time_value(time_) {}
String getName() const override { return "now"; }
2021-05-15 17:33:15 +00:00
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
{
2020-10-19 15:27:41 +00:00
return DataTypeDateTime().createColumnConst(
input_rows_count,
static_cast<UInt64>(time_value));
}
private:
time_t time_value;
};
2021-05-15 17:33:15 +00:00
class FunctionBaseNow : public IFunctionBase
{
public:
2021-10-25 09:06:53 +00:00
explicit FunctionBaseNow(time_t time_, DataTypes argument_types_, DataTypePtr return_type_)
: time_value(time_), argument_types(std::move(argument_types_)), return_type(std::move(return_type_)) {}
String getName() const override { return "now"; }
const DataTypes & getArgumentTypes() const override
{
return argument_types;
}
2020-10-19 15:27:41 +00:00
const DataTypePtr & getResultType() const override
{
return return_type;
}
2021-05-15 17:33:15 +00:00
ExecutableFunctionPtr prepare(const ColumnsWithTypeAndName &) const override
{
return std::make_unique<ExecutableFunctionNow>(time_value);
}
bool isDeterministic() const override { return false; }
bool isDeterministicInScopeOfQuery() const override { return true; }
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
private:
time_t time_value;
2021-10-25 09:06:53 +00:00
DataTypes argument_types;
DataTypePtr return_type;
};
2021-05-15 17:33:15 +00:00
class NowOverloadResolver : public IFunctionOverloadResolver
{
public:
static constexpr auto name = "now";
String getName() const override { return name; }
bool isDeterministic() const override { return false; }
bool isVariadic() const override { return true; }
size_t getNumberOfArguments() const override { return 0; }
2021-06-01 12:20:52 +00:00
static FunctionOverloadResolverPtr create(ContextPtr) { return std::make_unique<NowOverloadResolver>(); }
2021-05-15 17:33:15 +00:00
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
{
if (arguments.size() > 1)
{
throw Exception("Arguments size of function " + getName() + " should be 0 or 1", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
}
if (arguments.size() == 1 && !isStringOrFixedString(arguments[0].type))
{
throw Exception(
"Arguments of function " + getName() + " should be String or FixedString", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
}
if (arguments.size() == 1)
{
return std::make_shared<DataTypeDateTime>(extractTimeZoneNameFromFunctionArguments(arguments, 0, 0));
}
return std::make_shared<DataTypeDateTime>();
}
2021-05-15 17:33:15 +00:00
FunctionBasePtr buildImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &) const override
{
2020-09-26 06:48:59 +00:00
if (arguments.size() > 1)
{
throw Exception("Arguments size of function " + getName() + " should be 0 or 1", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
}
if (arguments.size() == 1 && !isStringOrFixedString(arguments[0].type))
{
throw Exception(
"Arguments of function " + getName() + " should be String or FixedString", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
}
if (arguments.size() == 1)
return std::make_unique<FunctionBaseNow>(
2021-10-25 09:06:53 +00:00
time(nullptr), DataTypes{arguments.front().type},
std::make_shared<DataTypeDateTime>(extractTimeZoneNameFromFunctionArguments(arguments, 0, 0)));
return std::make_unique<FunctionBaseNow>(time(nullptr), DataTypes(), std::make_shared<DataTypeDateTime>());
}
};
2020-09-07 18:00:37 +00:00
}
void registerFunctionNow(FunctionFactory & factory)
{
factory.registerFunction<NowOverloadResolver>(FunctionFactory::CaseInsensitive);
}
}