1 | #pragma once |
---|---|
2 | #include <string> |
3 | |
4 | namespace Poco { class Logger; namespace Util { class LayeredConfiguration; } } |
5 | |
6 | namespace DB |
7 | { |
8 | /// Read configuration files related to clickhouse-client like applications. Returns true if any configuration files were read. |
9 | bool configReadClient(Poco::Util::LayeredConfiguration & config, const std::string & home_path); |
10 | } |
11 |