mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
17 lines
324 B
C++
17 lines
324 B
C++
#pragma once
|
|
|
|
#include "IParserBase.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// CREATE FUNCTION test AS x -> x || '1'
|
|
class ParserCreateFunctionQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "CREATE FUNCTION query"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
}
|