mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
45 lines
934 B
C++
45 lines
934 B
C++
#include "parseDatabaseAndTableName.h"
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
#include <Parsers/ASTIdentifier.h>
|
|
#include <Parsers/CommonParsers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool parseDatabaseAndTableName(IParser::Pos & pos, Expected & expected, String & database_str, String & table_str)
|
|
{
|
|
ParserToken s_dot(TokenType::Dot);
|
|
ParserIdentifier table_parser;
|
|
|
|
ASTPtr database;
|
|
ASTPtr table;
|
|
|
|
database_str = "";
|
|
table_str = "";
|
|
|
|
if (!table_parser.parse(pos, database, expected))
|
|
return false;
|
|
|
|
if (s_dot.ignore(pos))
|
|
{
|
|
if (!table_parser.parse(pos, table, expected))
|
|
{
|
|
database_str = "";
|
|
return false;
|
|
}
|
|
|
|
tryGetIdentifierNameInto(database, database_str);
|
|
tryGetIdentifierNameInto(table, table_str);
|
|
}
|
|
else
|
|
{
|
|
database_str = "";
|
|
tryGetIdentifierNameInto(database, table_str);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|