1 | #pragma once |
---|---|
2 | |
3 | #include <memory> |
4 | |
5 | |
6 | namespace DB |
7 | { |
8 | |
9 | class Context; |
10 | class AsynchronousMetrics; |
11 | class IDatabase; |
12 | |
13 | void attachSystemTablesServer(IDatabase & system_database, bool has_zookeeper); |
14 | void attachSystemTablesLocal(IDatabase & system_database); |
15 | void attachSystemTablesAsync(IDatabase & system_database, AsynchronousMetrics & async_metrics); |
16 | |
17 | } |
18 |