mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +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 NameRoundAge { static const char * get() { return "roundAge"; } };
|
||||
|
||||
|
@ -55,7 +55,7 @@ FunctionPtr FunctionFactory::get(
|
||||
else if (name == "not") return new FunctionNot;
|
||||
|
||||
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 == "empty") return new FunctionEmpty;
|
||||
|
Loading…
Reference in New Issue
Block a user