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/client.h | |
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/client.h')
-rw-r--r-- | library/cpp/clickhouse/client/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/clickhouse/client/client.h b/library/cpp/clickhouse/client/client.h index 865a9df551..b008ef99a5 100644 --- a/library/cpp/clickhouse/client/client.h +++ b/library/cpp/clickhouse/client/client.h @@ -81,13 +81,13 @@ namespace NClickHouse { /// Intends for execute select queries. Data will be returned with /// one or more call of \p cb. - void Select(const TString& query, TSelectCallback cb); + void Select(const TString& query, TSelectCallback cb, const TString& query_id = ""); /// Alias for Execute. void Select(const TQuery& query); /// Intends for insert block of data into a table \p table_name. - void Insert(const TString& table_name, const TBlock& block); + void Insert(const TString& table_name, const TBlock& block, const TString& query_id = ""); /// Ping server for aliveness. void Ping(); |