diff options
author | AlexSm <alex@ydb.tech> | 2024-01-04 15:09:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 15:09:05 +0100 |
commit | dab291146f6cd7d35684e3a1150e5bb1c412982c (patch) | |
tree | 36ef35f6cacb6432845a4a33f940c95871036b32 /library/cpp/clickhouse/client/query.cpp | |
parent | 63660ad5e7512029fd0218e7a636580695a24e1f (diff) | |
download | ydb-dab291146f6cd7d35684e3a1150e5bb1c412982c.tar.gz |
Library import 5, delete go dependencies (#832)
* Library import 5, delete go dependencies
* Fix yt client
Diffstat (limited to 'library/cpp/clickhouse/client/query.cpp')
-rw-r--r-- | library/cpp/clickhouse/client/query.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cpp/clickhouse/client/query.cpp b/library/cpp/clickhouse/client/query.cpp index 875dc4a078..4c20bc8d88 100644 --- a/library/cpp/clickhouse/client/query.cpp +++ b/library/cpp/clickhouse/client/query.cpp @@ -14,6 +14,12 @@ namespace NClickHouse { { } + TQuery::TQuery(const TString& query, const TString& query_id) + : Query_(query) + , QueryId_(query_id) + { + } + TQuery::~TQuery() { } |