ClickHouse/programs/odbc-bridge/getIdentifierQuote.h
Alexander Tokmakov 8a40c1a221 minor fixes
2020-05-15 00:51:07 +03:00

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