mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
14 lines
408 B
C++
14 lines
408 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/ASTSelectQuery.h>
|
||
|
#include <Parsers/IParser.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
String extractLiteralArgumentWithoutQuotes(const std::string & function_name, IParser::Pos & pos);
|
||
|
String extractTokenWithoutQuotes(IParser::Pos & pos);
|
||
|
void setSelectAll(ASTSelectQuery & select_query);
|
||
|
String wildcardToRegex(const String & wildcard);
|
||
|
ASTPtr wrapInSelectWithUnion(const ASTPtr & select_query);
|
||
|
}
|