2017-11-21 19:17:24 +00:00
|
|
|
#include "parseIdentifierOrStringLiteral.h"
|
|
|
|
|
|
|
|
#include "ExpressionElementParsers.h"
|
|
|
|
#include "ASTLiteral.h"
|
|
|
|
#include "ASTIdentifier.h"
|
2020-05-30 14:18:08 +00:00
|
|
|
#include <Parsers/CommonParsers.h>
|
2020-06-05 21:31:37 +00:00
|
|
|
#include <Parsers/ExpressionListParsers.h>
|
2017-11-21 19:17:24 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
bool parseIdentifierOrStringLiteral(IParser::Pos & pos, Expected & expected, String & result)
|
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
return IParserBase::wrapParseImpl(pos, [&]
|
2017-11-21 19:17:24 +00:00
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
ASTPtr ast;
|
|
|
|
if (ParserIdentifier().parse(pos, ast, expected))
|
|
|
|
{
|
|
|
|
result = getIdentifierName(ast);
|
|
|
|
return true;
|
|
|
|
}
|
2017-11-21 19:17:24 +00:00
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
if (ParserStringLiteral().parse(pos, ast, expected))
|
|
|
|
{
|
|
|
|
result = ast->as<ASTLiteral &>().value.safeGet<String>();
|
|
|
|
return true;
|
|
|
|
}
|
2017-11-21 19:17:24 +00:00
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
return false;
|
|
|
|
});
|
2017-11-21 19:17:24 +00:00
|
|
|
}
|
|
|
|
|
2020-05-30 14:18:08 +00:00
|
|
|
|
|
|
|
bool parseIdentifiersOrStringLiterals(IParser::Pos & pos, Expected & expected, Strings & result)
|
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
Strings res;
|
2020-05-30 14:18:08 +00:00
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
auto parse_single_id_or_literal = [&]
|
|
|
|
{
|
|
|
|
String str;
|
|
|
|
if (!parseIdentifierOrStringLiteral(pos, expected, str))
|
|
|
|
return false;
|
2020-05-30 14:18:08 +00:00
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
res.emplace_back(std::move(str));
|
2020-05-30 14:18:08 +00:00
|
|
|
return true;
|
2020-06-05 21:31:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!ParserList::parseUtil(pos, expected, parse_single_id_or_literal, false))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
result = std::move(res);
|
|
|
|
return true;
|
2020-05-30 14:18:08 +00:00
|
|
|
}
|
|
|
|
|
2018-02-26 03:37:08 +00:00
|
|
|
}
|