ClickHouse/programs/odbc-bridge/IdentifierQuoteHandler.h

31 lines
686 B
C++
Raw Normal View History

2018-09-27 15:23:42 +00:00
#pragma once
2018-09-27 15:23:42 +00:00
#include <Interpreters/Context.h>
#include <Poco/Logger.h>
#include <Poco/Net/HTTPRequestHandler.h>
#if USE_ODBC
/// This handler establishes connection to database, and retrieve quote style identifier
2018-09-27 15:23:42 +00:00
namespace DB
{
2018-09-27 15:23:42 +00:00
class IdentifierQuoteHandler : public Poco::Net::HTTPRequestHandler
{
public:
2020-04-17 20:53:25 +00:00
IdentifierQuoteHandler(size_t keep_alive_timeout_, Context &)
: log(&Poco::Logger::get("IdentifierQuoteHandler")), keep_alive_timeout(keep_alive_timeout_)
2018-09-27 15:23:42 +00:00
{
}
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override;
private:
Poco::Logger * log;
size_t keep_alive_timeout;
};
2018-09-27 15:23:42 +00:00
}
2018-09-27 15:23:42 +00:00
#endif