mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
13 lines
254 B
C++
13 lines
254 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParser.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Parses a name of an object which could be written in 3 forms:
|
|
* name, `name` or 'name' */
|
|
bool parseIdentifierOrStringLiteral(IParser::Pos & pos, Expected & expected, String & result);
|
|
|
|
}
|