dbms: fixed typo [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2012-12-24 17:23:30 +00:00
parent ea874ad1c5
commit 6e57b0d52c
2 changed files with 2 additions and 2 deletions

View File

@ -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"; } };

View File

@ -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;