mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 05:52:05 +00:00
30 lines
621 B
C++
30 lines
621 B
C++
#pragma once
|
|
|
|
#include <Databases/IDatabase.h>
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/ASTUndropQuery.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
using DatabaseAndTable = std::pair<DatabasePtr, StoragePtr>;
|
|
class AccessRightsElements;
|
|
|
|
|
|
class InterpreterUndropQuery : public IInterpreter, WithMutableContext
|
|
{
|
|
public:
|
|
InterpreterUndropQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_);
|
|
|
|
/// Undrop table.
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
|
|
ASTPtr query_ptr;
|
|
|
|
BlockIO executeToTable(ASTUndropQuery & query);
|
|
};
|
|
}
|