mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
21 lines
397 B
C++
21 lines
397 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 "ODBCConnectionFactory.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string getIdentifierQuote(nanodbc::ConnectionHolderPtr connection_holder);
|
|
IdentifierQuotingStyle getQuotingStyle(nanodbc::ConnectionHolderPtr connection);
|
|
|
|
}
|
|
|
|
#endif
|