ClickHouse/programs/odbc-bridge/getIdentifierQuote.h

19 lines
255 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>
namespace DB
{
std::string getIdentifierQuote(SQLHDBC hdbc);
}
#endif