mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
format code
This commit is contained in:
parent
8315e4f7a3
commit
d9f490a300
@ -35,12 +35,13 @@ public:
|
||||
class FunctionBaseToTimeZone : public IFunctionBase
|
||||
{
|
||||
public:
|
||||
FunctionBaseToTimeZone(bool is_constant_timezone_,
|
||||
FunctionBaseToTimeZone(
|
||||
bool is_constant_timezone_,
|
||||
DataTypes argument_types_,
|
||||
DataTypePtr return_type_):
|
||||
is_constant_timezone(is_constant_timezone_),
|
||||
argument_types(std::move(argument_types_)),
|
||||
return_type(std::move(return_type_)) {}
|
||||
DataTypePtr return_type_)
|
||||
: is_constant_timezone(is_constant_timezone_)
|
||||
, argument_types(std::move(argument_types_))
|
||||
, return_type(std::move(return_type_)) {}
|
||||
|
||||
String getName() const override { return "toTimezone"; }
|
||||
|
||||
@ -107,9 +108,7 @@ public:
|
||||
{
|
||||
bool is_constant_timezone = false;
|
||||
if (arguments[1].column)
|
||||
{
|
||||
is_constant_timezone = isColumnConst(*arguments[1].column);
|
||||
}
|
||||
|
||||
DataTypes data_types(arguments.size());
|
||||
for (size_t i = 0; i < arguments.size(); ++i)
|
||||
|
Loading…
Reference in New Issue
Block a user