mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 10:31:57 +00:00
9fe47df2e8
Support syntax "SHOW CREATE USER ALL" and "SHOW GRANTS FOR ALL".
14 lines
398 B
C++
14 lines
398 B
C++
#pragma once
|
|
#include <Parsers/IParser.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Parses [db.]name
|
|
bool parseDatabaseAndTableName(IParser::Pos & pos, Expected & expected, String & database_str, String & table_str);
|
|
|
|
/// Parses [db.]name or [db.]* or [*.]*
|
|
bool parseDatabaseAndTableNameOrAsterisks(IParser::Pos & pos, Expected & expected, String & database, bool & any_database, String & table, bool & any_table);
|
|
|
|
}
|