#include #include namespace DB { class ASTKillQueryQuery : public ASTQueryWithOutput { public: ASTPtr where_expression; bool sync = false; bool test = false; ASTKillQueryQuery() = default; ASTKillQueryQuery(const StringRange range_) : ASTQueryWithOutput(range_) {} ASTPtr clone() const override { return std::make_shared(*this); } String getID() const override; void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override; }; }