From 5d5e5ed0404cb9a28c9d5e30db411770571499fa Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Fri, 17 Apr 2020 23:53:25 +0300 Subject: [PATCH] Fix build. --- programs/odbc-bridge/IdentifierQuoteHandler.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/programs/odbc-bridge/IdentifierQuoteHandler.h b/programs/odbc-bridge/IdentifierQuoteHandler.h index 9704703fe9..86230d8ad1 100644 --- a/programs/odbc-bridge/IdentifierQuoteHandler.h +++ b/programs/odbc-bridge/IdentifierQuoteHandler.h @@ -12,8 +12,8 @@ namespace DB class IdentifierQuoteHandler : public Poco::Net::HTTPRequestHandler { public: - IdentifierQuoteHandler(size_t keep_alive_timeout_, Context & context_) - : log(&Poco::Logger::get("IdentifierQuoteHandler")), keep_alive_timeout(keep_alive_timeout_), context(context_) + IdentifierQuoteHandler(size_t keep_alive_timeout_, Context &) + : log(&Poco::Logger::get("IdentifierQuoteHandler")), keep_alive_timeout(keep_alive_timeout_) { } @@ -22,7 +22,6 @@ public: private: Poco::Logger * log; size_t keep_alive_timeout; - Context & context; }; } #endif -- GitLab