mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 18:02:24 +00:00
ac6ccf7d9a
533 -> 500 objects on change Less direct dependencies
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#include <Parsers/Access/parseUserName.h>
|
|
|
|
#include <Parsers/Access/ASTUserNameWithHost.h>
|
|
#include <Parsers/Access/ParserUserNameWithHost.h>
|
|
#include <Parsers/CommonParsers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool parseUserName(IParser::Pos & pos, Expected & expected, String & user_name)
|
|
{
|
|
ASTPtr ast;
|
|
if (!ParserUserNameWithHost{}.parse(pos, ast, expected))
|
|
return false;
|
|
user_name = ast->as<const ASTUserNameWithHost &>().toString();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool parseUserNames(IParser::Pos & pos, Expected & expected, Strings & user_names)
|
|
{
|
|
ASTPtr ast;
|
|
if (!ParserUserNamesWithHost{}.parse(pos, ast, expected))
|
|
return false;
|
|
user_names = ast->as<const ASTUserNamesWithHost &>().toStrings();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool parseCurrentUserTag(IParser::Pos & pos, Expected & expected)
|
|
{
|
|
return IParserBase::wrapParseImpl(pos, [&]
|
|
{
|
|
if (!ParserKeyword{"CURRENT_USER"}.ignore(pos, expected) && !ParserKeyword{"currentUser"}.ignore(pos, expected))
|
|
return false;
|
|
|
|
if (ParserToken{TokenType::OpeningRoundBracket}.ignore(pos, expected))
|
|
{
|
|
if (!ParserToken{TokenType::ClosingRoundBracket}.ignore(pos, expected))
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
|
|
}
|