mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
c888903488
* Add ATTACH PARTITION FROM table for MergeTree. [#CLICKHOUSE-3546] * Implemented replicated case on non-leader replica. [#CLICKHOUSE-3546] * Disable merges in the dropping range. [#CLICKHOUSE-3546] * DROP PARTITION is atomic and simpler now. [#CLICKHOUSE-3546] * Implemented more SYSTEM queries. [#CLICKHOUSE-2931] [#CLICKHOUSE-3546] SYSTEM queries: RESTART REPLICAS SYNC REPLICA db.name STOP MERGES [db.name] START MERGES [db.name] STOP FETCHES [db.name] START FETCHES [db.name] STOP REPLICATED SENDS [db.name] START REPLICATED SENDS [db.name] STOP REPLICATION QUEUES [db.name] START REPLICATION QUEUES [db.name] * Fixed a bunch of bugs in REPLACE PARTITION. [#CLICKHOUSE-3546] * Add tests for REPLACE PARTITION and SYSTEM. [#CLICKHOUSE-3546] * Add system.part_log logging. [#CLICKHOUSE-3546] * Fixed long wait in SYNC REPLICA. [#CLICKHOUSE-3546] * Add requested changes. [#CLICKHOUSE-3546] Fixed clickhouse-client bad return code. * Add requested chenges. [#CLICKHOUSE-3546] * Add requested chenges. [#CLICKHOUSE-3546]
38 lines
823 B
C++
38 lines
823 B
C++
#pragma once
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class IAST;
|
|
class ASTSystemQuery;
|
|
class IStorage;
|
|
using ASTPtr = std::shared_ptr<IAST>;
|
|
using StoragePtr = std::shared_ptr<IStorage>;
|
|
|
|
|
|
class InterpreterSystemQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterSystemQuery(const ASTPtr & query_ptr_, Context & context_);
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
Poco::Logger * log = nullptr;
|
|
|
|
/// Tries to get a replicated table and restart it
|
|
/// Returns pointer to a newly created table if the restart was successful
|
|
StoragePtr tryRestartReplica(const String & database_name, const String & table_name, Context & context);
|
|
|
|
void restartReplicas(Context & context);
|
|
void syncReplica(ASTSystemQuery & query);
|
|
};
|
|
|
|
|
|
}
|