#include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int ILLEGAL_TYPE_OF_ARGUMENT; extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; } namespace { /// Get the current time. (It is a constant, it is evaluated once for the entire query.) class ExecutableFunctionNow : public IExecutableFunction { public: explicit ExecutableFunctionNow(time_t time_) : time_value(time_) {} String getName() const override { return "now"; } ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override { return DataTypeDateTime().createColumnConst( input_rows_count, static_cast(time_value)); } private: time_t time_value; }; class FunctionBaseNow : public IFunctionBase { public: 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; } const DataTypePtr & getResultType() const override { return return_type; } ExecutableFunctionPtr prepare(const ColumnsWithTypeAndName &) const override { return std::make_unique(time_value); } bool isDeterministic() const override { return false; } bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo &) const override { return false; } private: time_t time_value; DataTypes argument_types; DataTypePtr return_type; }; 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; } static FunctionOverloadResolverPtr create(ContextPtr) { return std::make_unique(); } 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(extractTimeZoneNameFromFunctionArguments(arguments, 0, 0)); } return std::make_shared(); } FunctionBasePtr buildImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &) 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_unique( time(nullptr), DataTypes{arguments.front().type}, std::make_shared(extractTimeZoneNameFromFunctionArguments(arguments, 0, 0))); return std::make_unique(time(nullptr), DataTypes(), std::make_shared()); } }; } REGISTER_FUNCTION(Now) { factory.registerFunction({}, FunctionFactory::CaseInsensitive); } }