mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
22 lines
371 B
C++
22 lines
371 B
C++
#pragma once
|
|
|
|
#if USE_ODBC
|
|
|
|
#include <Interpreters/Context.h>
|
|
#include <Poco/Logger.h>
|
|
#include <Poco/Net/HTTPRequestHandler.h>
|
|
#include <Parsers/IdentifierQuotingStyle.h>
|
|
#include <nanodbc/nanodbc.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string getIdentifierQuote(nanodbc::connection & connection);
|
|
|
|
IdentifierQuotingStyle getQuotingStyle(nanodbc::connection & connection);
|
|
|
|
}
|
|
|
|
#endif
|