mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 12:52:37 +00:00
22 lines
363 B
C++
22 lines
363 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithOutput.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTDescribeCacheQuery : public ASTQueryWithOutput
|
|
{
|
|
public:
|
|
String cache_name;
|
|
|
|
String getID(char) const override;
|
|
ASTPtr clone() const override;
|
|
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
|
|
}
|