2011-11-05 23:31:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Databases/IDatabase.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2017-12-20 07:39:52 +00:00
|
|
|
#include <Parsers/ASTDropQuery.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2011-11-05 23:31:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2017-05-23 18:01:50 +00:00
|
|
|
class Context;
|
2018-04-21 00:35:20 +00:00
|
|
|
using DatabaseAndTable = std::pair<DatabasePtr, StoragePtr>;
|
2020-09-07 23:08:17 +00:00
|
|
|
class AccessRightsElements;
|
2017-05-23 18:01:50 +00:00
|
|
|
|
2018-09-04 20:56:09 +00:00
|
|
|
/** Allow to either drop table with all its data (DROP),
|
|
|
|
* or remove information about table (just forget) from server (DETACH),
|
|
|
|
* or just clear all data in table (TRUNCATE).
|
2011-11-05 23:31:19 +00:00
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
class InterpreterDropQuery : public IInterpreter
|
2011-11-05 23:31:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-05-23 18:01:50 +00:00
|
|
|
InterpreterDropQuery(const ASTPtr & query_ptr_, Context & context_);
|
2015-06-18 02:11:05 +00:00
|
|
|
|
2017-04-13 16:12:56 +00:00
|
|
|
/// Drop table or database.
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO execute() override;
|
2011-11-05 23:31:19 +00:00
|
|
|
|
|
|
|
private:
|
2020-01-24 16:20:36 +00:00
|
|
|
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
2017-05-23 18:01:50 +00:00
|
|
|
Context & context;
|
2018-04-21 00:35:20 +00:00
|
|
|
|
2020-10-18 20:18:02 +00:00
|
|
|
BlockIO executeToDatabase(const String & database_name, ASTDropQuery::Kind kind, bool if_exists, bool no_delay);
|
2018-04-21 00:35:20 +00:00
|
|
|
|
2020-10-13 13:31:02 +00:00
|
|
|
BlockIO executeToTable(const ASTDropQuery & query);
|
2018-04-21 00:35:20 +00:00
|
|
|
|
2020-03-09 00:08:02 +00:00
|
|
|
BlockIO executeToDictionary(const String & database_name, const String & dictionary_name, ASTDropQuery::Kind kind, bool if_exists, bool is_temporary, bool no_ddl_lock);
|
2019-10-11 13:21:52 +00:00
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
BlockIO executeToTemporaryTable(const String & table_name, ASTDropQuery::Kind kind);
|
2011-11-05 23:31:19 +00:00
|
|
|
};
|
|
|
|
}
|