mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
670e98fa92
* allow several <graphite> targets * fix * fix * Adjustable parts * changelog version * fix * changelog * Style fixes * attachSystemTables * config describe * fixes * fixes
14 lines
372 B
C++
14 lines
372 B
C++
#pragma once
|
|
|
|
#include <DB/Databases/IDatabase.h>
|
|
|
|
namespace DB
|
|
{
|
|
class Context;
|
|
class AsynchronousMetrics;
|
|
|
|
void attachSystemTablesServer(DatabasePtr system_database, Context * global_context, bool has_zookeeper);
|
|
void attachSystemTablesLocal(DatabasePtr system_database);
|
|
void attachSystemTablesAsync(DatabasePtr system_database, AsynchronousMetrics & async_metrics);
|
|
}
|