mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
30 lines
594 B
C++
30 lines
594 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <Core/Protocol.h>
|
|
#include <IO/ConnectionTimeouts.h>
|
|
|
|
namespace Poco::Util
|
|
{
|
|
class AbstractConfiguration;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
struct ConnectionParameters
|
|
{
|
|
std::string host;
|
|
UInt16 port{};
|
|
std::string default_database;
|
|
std::string user;
|
|
std::string password;
|
|
Protocol::Secure security = Protocol::Secure::Disable;
|
|
Protocol::Compression compression = Protocol::Compression::Enable;
|
|
ConnectionTimeouts timeouts;
|
|
|
|
ConnectionParameters() {}
|
|
ConnectionParameters(const Poco::Util::AbstractConfiguration & config);
|
|
};
|
|
|
|
}
|