Skip to content

Commit

Permalink
Hard code ignoring database "system" regardless config (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 authored and hanfei1991 committed Aug 30, 2019
1 parent 6536d62 commit 366c5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Server/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ int Server::main(const std::vector<std::string> & /*args*/)
std::vector<std::string> pd_addrs;
std::string learner_key;
std::string learner_value;
std::unordered_set<std::string> ignore_databases;
std::unordered_set<std::string> ignore_databases{"system"};
std::string kvstore_path = path + "kvstore/";
std::string region_mapping_path = path + "regmap/";

Expand Down

0 comments on commit 366c5bd

Please sign in to comment.