mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
20 lines
440 B
C
20 lines
440 B
C
|
#pragma once
|
||
|
|
||
|
#include <DB/Parsers/IParserBase.h>
|
||
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/** Запрос (EXISTS TABLE | SHOW CREATE TABLE | (DESCRIBE | DESC) TABLE) [db.]name [FORMAT format]
|
||
|
*/
|
||
|
class ParserTablePropertiesQuery : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
String getName() { return "EXISTS, SHOW CREATE or DESCRIBE query"; }
|
||
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected);
|
||
|
};
|
||
|
|
||
|
}
|