mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
50 lines
1022 B
C++
50 lines
1022 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTQueryWithTableAndOutput.h>
|
|
#include <Parsers/ASTQueryWithOnCluster.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** DROP query
|
|
*/
|
|
class ASTDropQuery : public ASTQueryWithTableAndOutput, public ASTQueryWithOnCluster
|
|
{
|
|
public:
|
|
enum Kind
|
|
{
|
|
Drop,
|
|
Detach,
|
|
Truncate,
|
|
};
|
|
|
|
Kind kind;
|
|
bool if_exists{false};
|
|
|
|
/// Useful if we already have a DDL lock
|
|
bool no_ddl_lock{false};
|
|
|
|
/// We dropping dictionary, so print correct word
|
|
bool is_dictionary{false};
|
|
|
|
/// Same as above
|
|
bool is_view{false};
|
|
|
|
bool no_delay{false};
|
|
|
|
/** Get the text that identifies this element. */
|
|
String getID(char) const override;
|
|
ASTPtr clone() const override;
|
|
|
|
ASTPtr getRewrittenASTWithoutOnCluster(const std::string & new_database) const override
|
|
{
|
|
return removeOnCluster<ASTDropQuery>(clone(), new_database);
|
|
}
|
|
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
|
|
}
|