mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
23 lines
355 B
C++
23 lines
355 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>
|
|
|
|
#include <Parsers/IdentifierQuotingStyle.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string getIdentifierQuote(SQLHDBC hdbc);
|
|
|
|
IdentifierQuotingStyle getQuotingStyle(SQLHDBC hdbc);
|
|
|
|
}
|
|
|
|
#endif
|