mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
18 lines
295 B
C++
18 lines
295 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithOutput.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct ASTShowEngineAndQueryNames
|
|
{
|
|
static constexpr auto ID = "ShowEngineQuery";
|
|
static constexpr auto Query = "SHOW ENGINES";
|
|
};
|
|
|
|
using ASTShowEnginesQuery = ASTQueryWithOutputImpl<ASTShowEngineAndQueryNames>;
|
|
|
|
}
|