mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
12 lines
235 B
C++
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;
|
||
|
};
|
||
|
}
|