mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
23 lines
385 B
C++
23 lines
385 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
|
|
|
|
#if USE_POCO_SQLODBC
|
|
#include <Poco/SQL/ODBC/Utility.h>
|
|
#endif
|
|
#if USE_POCO_DATAODBC
|
|
#include <Poco/Data/ODBC/Utility.h>
|
|
#endif
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string getIdentifierQuote(SQLHDBC hdbc);
|
|
}
|
|
#endif
|