1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-04 04:42:30 +03:00

Merge branch 'develop-1.1' into dev-merge-up-20180202

This commit is contained in:
Andrew Hutchings
2018-02-02 14:53:36 +00:00
77 changed files with 1371 additions and 2547 deletions

View File

@ -68,7 +68,7 @@ int LibMySQL::init(const char* h, unsigned int p, const char* u, const char* w,
if (!(TLSCA.empty() || TLSClientCert.empty() || TLSClientKey.empty()))
{
mysql_ssl_set(fCon, TLSClientKey.c_str(), TLSClientCert.c_str(),
TLSCA.c_str(), NULL, NULL);
TLSCA.c_str(), NULL, NULL);
}
if (fCon != NULL)
@ -117,7 +117,7 @@ int LibMySQL::run(const char* query)
return ret;
}
void LibMySQL::handleMySqlError(const char* errStr, unsigned int errCode)
void LibMySQL::handleMySqlError(const char* errStr, unsigned int errCode)
{
ostringstream oss;
oss << errStr << "(" << errCode << ")";