mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
dbms: fixed typo [#CONV-2944].
This commit is contained in:
parent
ea874ad1c5
commit
6e57b0d52c
@ -88,7 +88,7 @@ namespace DB
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct NameRoundToExp2 { static const char * get() { return "roundToExp"; } };
|
struct NameRoundToExp2 { static const char * get() { return "roundToExp2"; } };
|
||||||
struct NameRoundDuration { static const char * get() { return "roundDuration"; } };
|
struct NameRoundDuration { static const char * get() { return "roundDuration"; } };
|
||||||
struct NameRoundAge { static const char * get() { return "roundAge"; } };
|
struct NameRoundAge { static const char * get() { return "roundAge"; } };
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ FunctionPtr FunctionFactory::get(
|
|||||||
else if (name == "not") return new FunctionNot;
|
else if (name == "not") return new FunctionNot;
|
||||||
|
|
||||||
else if (name == "roundToExp2") return new FunctionRoundToExp2;
|
else if (name == "roundToExp2") return new FunctionRoundToExp2;
|
||||||
else if (name == "roundDuration") return new FunctionRoundDuration;
|
else if (name == "roundDuration") return new FunctionRoundDuration;
|
||||||
else if (name == "roundAge") return new FunctionRoundAge;
|
else if (name == "roundAge") return new FunctionRoundAge;
|
||||||
|
|
||||||
else if (name == "empty") return new FunctionEmpty;
|
else if (name == "empty") return new FunctionEmpty;
|
||||||
|
Loading…
Reference in New Issue
Block a user