mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
18 lines
348 B
C++
18 lines
348 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class AsynchronousMetrics;
|
|
class IDatabase;
|
|
|
|
void attachSystemTablesServer(IDatabase & system_database, bool has_zookeeper);
|
|
void attachSystemTablesLocal(IDatabase & system_database);
|
|
void attachSystemTablesAsync(IDatabase & system_database, AsynchronousMetrics & async_metrics);
|
|
|
|
}
|