ClickHouse/src/Interpreters/InterpreterDropQuery.h

48 lines
1.7 KiB
C++
Raw Normal View History

2011-11-05 23:31:19 +00:00
#pragma once
2019-03-11 14:01:45 +00:00
#include <Databases/IDatabase.h>
#include <Interpreters/IInterpreter.h>
#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>;
class AccessRightsElements;
2017-05-23 18:01:50 +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
*/
2021-05-31 14:49:02 +00:00
class InterpreterDropQuery : public IInterpreter, WithMutableContext
2011-11-05 23:31:19 +00:00
{
public:
2021-05-31 14:49:02 +00:00
InterpreterDropQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_);
2015-06-18 02:11:05 +00:00
/// Drop table or database.
BlockIO execute() override;
2011-11-05 23:31:19 +00:00
void extendQueryLogElemImpl(QueryLogElement & elem, const ASTPtr &, ContextPtr) const override;
2020-12-14 03:30:39 +00:00
2021-04-11 07:44:40 +00:00
static void executeDropQuery(ASTDropQuery::Kind kind, ContextPtr global_context, ContextPtr current_context, const StorageID & target_table_id, bool no_delay);
2011-11-05 23:31:19 +00:00
private:
2020-01-24 16:20:36 +00:00
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
ASTPtr query_ptr;
2018-04-21 00:35:20 +00:00
2020-10-27 19:56:54 +00:00
BlockIO executeToDatabase(const ASTDropQuery & query);
2020-10-27 23:50:27 +00:00
BlockIO executeToDatabaseImpl(const ASTDropQuery & query, DatabasePtr & database, std::vector<UUID> & uuids_to_wait);
2018-04-21 00:35:20 +00:00
2021-03-16 22:01:48 +00:00
BlockIO executeToTable(ASTDropQuery & query);
BlockIO executeToTableImpl(ASTDropQuery & query, DatabasePtr & db, UUID & uuid_to_wait);
2020-10-27 19:56:54 +00:00
static void waitForTableToBeActuallyDroppedOrDetached(const ASTDropQuery & query, const DatabasePtr & db, const UUID & uuid_to_wait);
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);
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
};
}