blob: 7a447a4f24b8bda824814e4bf53c8b33d856adfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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>;
}
|