From c335aeba6be16f32c1cf8844dc372d457f21a8b7 Mon Sep 17 00:00:00 2001 From: zanmato1984 Date: Fri, 30 Aug 2019 17:19:39 +0800 Subject: [PATCH] Hard code ignoring database "system" regardless config --- dbms/src/Server/Server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Server/Server.cpp b/dbms/src/Server/Server.cpp index 20b09165261..b2416f636ee 100644 --- a/dbms/src/Server/Server.cpp +++ b/dbms/src/Server/Server.cpp @@ -333,7 +333,7 @@ int Server::main(const std::vector & /*args*/) std::vector pd_addrs; std::string learner_key; std::string learner_value; - std::unordered_set ignore_databases; + std::unordered_set ignore_databases{"system"}; std::string kvstore_path = path + "kvstore/"; std::string region_mapping_path = path + "regmap/";