mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
29 lines
628 B
C++
29 lines
628 B
C++
#include "parseIdentifierOrStringLiteral.h"
|
|
|
|
#include "ExpressionElementParsers.h"
|
|
#include "ASTLiteral.h"
|
|
#include "ASTIdentifier.h"
|
|
#include <Common/typeid_cast.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool parseIdentifierOrStringLiteral(IParser::Pos & pos, Expected & expected, String & result)
|
|
{
|
|
ASTPtr res;
|
|
|
|
if (!ParserIdentifier().parse(pos, res, expected))
|
|
{
|
|
if (!ParserStringLiteral().parse(pos, res, expected))
|
|
return false;
|
|
|
|
result = typeid_cast<const ASTLiteral &>(*res).value.safeGet<String>();
|
|
}
|
|
else
|
|
result = typeid_cast<const ASTIdentifier &>(*res).name;
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|