ClickHouse/src/Parsers/Kusto/KustoFunctions/KQLMathematicalFunctions.h
2023-08-26 07:40:33 -07:00

12 lines
235 B
C++

#include "IParserKQLFunction.h"
namespace DB
{
class IsNan : public IParserKQLFunction
{
protected:
const char * getName() const override { return "isnan()"; }
bool convertImpl(String & out, IParser::Pos & pos) override;
};
}