ClickHouse/src/Parsers/ASTDescribeCacheQuery.h
Alexey Milovidov db9026b5ac Fix trash
2024-02-19 11:09:37 +01:00

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