mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
31 lines
940 B
C++
31 lines
940 B
C++
#pragma once
|
|
#include <Common/config.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Poco/Logger.h>
|
|
#include <Poco/Net/HTTPRequestHandler.h>
|
|
|
|
#if USE_POCO_SQLODBC || USE_POCO_DATAODBC
|
|
/** The structure of the table is taken from the query "SELECT * FROM table WHERE 1=0".
|
|
* TODO: It would be much better to utilize ODBC methods dedicated for columns description.
|
|
* If there is no such table, an exception is thrown.
|
|
*/
|
|
namespace DB
|
|
{
|
|
class ODBCColumnsInfoHandler : public Poco::Net::HTTPRequestHandler
|
|
{
|
|
public:
|
|
ODBCColumnsInfoHandler(size_t keep_alive_timeout_, Context & context_)
|
|
: log(&Poco::Logger::get("ODBCColumnsInfoHandler")), keep_alive_timeout(keep_alive_timeout_), context(context_)
|
|
{
|
|
}
|
|
|
|
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override;
|
|
|
|
private:
|
|
Poco::Logger * log;
|
|
size_t keep_alive_timeout;
|
|
Context & context;
|
|
};
|
|
}
|
|
#endif
|