mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
10 lines
163 B
C++
10 lines
163 B
C++
#include "KQLMathematicalFunctions.h"
|
|
|
|
namespace DB
|
|
{
|
|
bool IsNan::convertImpl(String & out, IParser::Pos & pos)
|
|
{
|
|
return directMapping(out, pos, "isNaN");
|
|
}
|
|
}
|