ClickHouse/src/Parsers/ASTShowEngineQuery.h
2023-01-31 18:35:10 +03:00

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>;
}