#pragma once #include #include #include #include #include namespace zkutil { class ZooKeeper; } namespace DB { struct DDLLogEntry; class Cluster; using ClusterPtr = std::shared_ptr; /// Returns true if provided ALTER type can be executed ON CLUSTER bool isSupportedAlterType(int type); struct DDLQueryOnClusterParams { /// A cluster to execute a distributed query. /// If not set, executeDDLQueryOnCluster() will use `query->cluster` to determine a cluster to execute the query. ClusterPtr cluster; /// 1-bases index of a shard to execute a query on, 0 means all shards. size_t only_shard_num = 0; /// 1-bases index of a replica to execute a query on, 0 means all replicas. size_t only_replica_num = 0; /// Privileges which the current user should have to execute a query. AccessRightsElements access_to_check; }; /// Pushes distributed DDL query to the queue. /// Returns DDLQueryStatusSource, which reads results of query execution on each host in the cluster. BlockIO executeDDLQueryOnCluster(const ASTPtr & query_ptr, ContextPtr context, const DDLQueryOnClusterParams & params = {}); BlockIO getDistributedDDLStatus( const String & node_path, const DDLLogEntry & entry, ContextPtr context, const std::optional & hosts_to_wait = {}); bool maybeRemoveOnCluster(const ASTPtr & query_ptr, ContextPtr context); }