ClickHouse/src/Parsers/Kusto/KustoFunctions/KQLMathematicalFunctions.h

12 lines
235 B
C++
Raw Normal View History

2022-09-08 20:19:56 +00:00
#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;
};
}