aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/clickhouse/client/query.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/clickhouse/client/query.cpp')
-rw-r--r--library/cpp/clickhouse/client/query.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/library/cpp/clickhouse/client/query.cpp b/library/cpp/clickhouse/client/query.cpp
deleted file mode 100644
index 4c20bc8d88..0000000000
--- a/library/cpp/clickhouse/client/query.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "query.h"
-
-namespace NClickHouse {
- TQuery::TQuery() {
- }
-
- TQuery::TQuery(const char* query)
- : Query_(query)
- {
- }
-
- TQuery::TQuery(const TString& query)
- : Query_(query)
- {
- }
-
- TQuery::TQuery(const TString& query, const TString& query_id)
- : Query_(query)
- , QueryId_(query_id)
- {
- }
-
- TQuery::~TQuery() {
- }
-
-}