mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
85d783c247
* Remove config_common.h * Refactor libcpuid contrib * Remove support for libcpuinfo * Define USE_CPUID in Arcadia * Refactor Poco libraries
19 lines
255 B
C++
19 lines
255 B
C++
#pragma once
|
|
|
|
#if USE_ODBC
|
|
|
|
# include <Interpreters/Context.h>
|
|
# include <Poco/Logger.h>
|
|
# include <Poco/Net/HTTPRequestHandler.h>
|
|
|
|
# include <Poco/Data/ODBC/Utility.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string getIdentifierQuote(SQLHDBC hdbc);
|
|
|
|
}
|
|
|
|
#endif
|