mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
100 lines
3.4 KiB
C++
100 lines
3.4 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithTableAndOutput.h>
|
|
#include <Common/quoteString.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct ASTExistsTableQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ExistsTableQuery";
|
|
static constexpr auto Query = "EXISTS TABLE";
|
|
static constexpr auto QueryTemporary = "EXISTS TEMPORARY TABLE";
|
|
};
|
|
|
|
struct ASTExistsDictionaryQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ExistsDictionaryQuery";
|
|
static constexpr auto Query = "EXISTS DICTIONARY";
|
|
/// No temporary dictionaries are supported, just for parsing
|
|
static constexpr auto QueryTemporary = "EXISTS TEMPORARY DICTIONARY";
|
|
};
|
|
|
|
struct ASTShowCreateTableQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowCreateTableQuery";
|
|
static constexpr auto Query = "SHOW CREATE TABLE";
|
|
static constexpr auto QueryTemporary = "SHOW CREATE TEMPORARY TABLE";
|
|
};
|
|
|
|
struct ASTShowCreateDatabaseQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowCreateDatabaseQuery";
|
|
static constexpr auto Query = "SHOW CREATE DATABASE";
|
|
static constexpr auto QueryTemporary = "SHOW CREATE TEMPORARY DATABASE";
|
|
};
|
|
|
|
struct ASTShowCreateDictionaryQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowCreateDictionaryQuery";
|
|
static constexpr auto Query = "SHOW CREATE DICTIONARY";
|
|
/// No temporary dictionaries are supported, just for parsing
|
|
static constexpr auto QueryTemporary = "SHOW CREATE TEMPORARY DICTIONARY";
|
|
};
|
|
|
|
struct ASTDescribeQueryExistsQueryIDAndQueryNames
|
|
{
|
|
static constexpr auto ID = "DescribeQuery";
|
|
static constexpr auto Query = "DESCRIBE TABLE";
|
|
static constexpr auto QueryTemporary = "DESCRIBE TEMPORARY TABLE";
|
|
};
|
|
|
|
using ASTExistsTableQuery = ASTQueryWithTableAndOutputImpl<ASTExistsTableQueryIDAndQueryNames>;
|
|
using ASTExistsDictionaryQuery = ASTQueryWithTableAndOutputImpl<ASTExistsDictionaryQueryIDAndQueryNames>;
|
|
using ASTShowCreateTableQuery = ASTQueryWithTableAndOutputImpl<ASTShowCreateTableQueryIDAndQueryNames>;
|
|
using ASTShowCreateDictionaryQuery = ASTQueryWithTableAndOutputImpl<ASTShowCreateDictionaryQueryIDAndQueryNames>;
|
|
|
|
class ASTShowCreateDatabaseQuery : public ASTQueryWithTableAndOutputImpl<ASTShowCreateDatabaseQueryIDAndQueryNames>
|
|
{
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << ASTShowCreateDatabaseQueryIDAndQueryNames::Query
|
|
<< " " << (settings.hilite ? hilite_none : "") << backQuoteIfNeed(database);
|
|
}
|
|
};
|
|
|
|
class ASTDescribeQuery : public ASTQueryWithOutput
|
|
{
|
|
public:
|
|
ASTPtr table_expression;
|
|
|
|
String getID(char) const override { return "DescribeQuery"; }
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto res = std::make_shared<ASTDescribeQuery>(*this);
|
|
res->children.clear();
|
|
if (table_expression)
|
|
{
|
|
res->table_expression = table_expression->clone();
|
|
res->children.push_back(res->table_expression);
|
|
}
|
|
cloneOutputOptions(*res);
|
|
return res;
|
|
}
|
|
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "")
|
|
<< "DESCRIBE TABLE " << (settings.hilite ? hilite_none : "");
|
|
table_expression->formatImpl(settings, state, frame);
|
|
}
|
|
|
|
};
|
|
|
|
}
|