Whitespaces [#CLICKHOUSE-3878]

This commit is contained in:
Alexey Milovidov 2018-08-23 03:12:24 +03:00
parent 0c129ab7f4
commit 61b8b60f53

View File

@ -14,10 +14,12 @@
namespace DB
{
namespace ErrorCodes
{
extern const int EXTERNAL_SERVER_IS_NOT_RESPONDING;
}
ODBCBridgeHelper::ODBCBridgeHelper(
const Configuration & config_, const Poco::Timespan & http_timeout_, const std::string & connection_string_)
: config(config_), http_timeout(http_timeout_), connection_string(connection_string_)
@ -30,6 +32,7 @@ ODBCBridgeHelper::ODBCBridgeHelper(
ping_url.setScheme("http");
ping_url.setPath(PING_HANDLER);
}
void ODBCBridgeHelper::startODBCBridge() const
{
Poco::Path path{config.getString("application.dir", "")};