CodeCommitsIssuesPull requestsActionsInsightsSecurity
150dd81e3b9fd109692e1cb20c5d5c8cc43f4f62

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Common/Config/configReadClient.h

10lines · modepreview

#pragma once
#include <string>

namespace Poco { class Logger; namespace Util { class LayeredConfiguration; } }

namespace DB
{
/// Read configuration files related to clickhouse-client like applications. Returns true if any configuration files were read.
bool configReadClient(Poco::Util::LayeredConfiguration & config, const std::string & home_path);
}