Add table to system tables

This commit is contained in:
alesapin 2020-10-27 10:21:49 +03:00
parent 880f4bbd05
commit d6130f13ef

View File

@ -19,6 +19,7 @@
#include <Storages/System/StorageSystemMacros.h>
#include <Storages/System/StorageSystemMerges.h>
#include <Storages/System/StorageSystemFetches.h>
#include <Storages/System/StorageSystemMetrics.h>
#include <Storages/System/StorageSystemModels.h>
#include <Storages/System/StorageSystemMutations.h>
@ -137,6 +138,7 @@ void attachSystemTablesServer(IDatabase & system_database, bool has_zookeeper)
attach<StorageSystemClusters>(system_database, "clusters");
attach<StorageSystemGraphite>(system_database, "graphite_retentions");
attach<StorageSystemMacros>(system_database, "macros");
attach<StorageSystemFetches>(system_database, "fetches");
if (has_zookeeper)
attach<StorageSystemZooKeeper>(system_database, "zookeeper");