ClickHouse/programs/odbc-bridge/getIdentifierQuote.h

23 lines
355 B
C++
Raw Normal View History

#pragma once
#if USE_ODBC
# include <Interpreters/Context.h>
# include <Poco/Logger.h>
# include <Poco/Net/HTTPRequestHandler.h>
# include <Poco/Data/ODBC/Utility.h>
2020-05-14 21:51:07 +00:00
#include <Parsers/IdentifierQuotingStyle.h>
namespace DB
{
std::string getIdentifierQuote(SQLHDBC hdbc);
2020-05-14 21:51:07 +00:00
IdentifierQuotingStyle getQuotingStyle(SQLHDBC hdbc);
}
#endif