mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
mysqlxx: fixed error in prev. revision.
This commit is contained in:
parent
b45adb47fc
commit
5c023f20e3
@ -43,8 +43,8 @@ void Connection::connect(const char* db,
|
|||||||
|
|
||||||
/// Установим таймауты
|
/// Установим таймауты
|
||||||
unsigned int timeout = MYSQLXX_TIMEOUT;
|
unsigned int timeout = MYSQLXX_TIMEOUT;
|
||||||
if (!mysql_options(&driver, MYSQL_OPT_CONNECT_TIMEOUT, &timeout)
|
if (!mysql_options(&driver, MYSQL_OPT_CONNECT_TIMEOUT, reinterpret_cast<const char *>(&timeout))
|
||||||
|| !mysql_options(&driver, MYSQL_OPT_READ_TIMEOUT, &timeout))
|
|| !mysql_options(&driver, MYSQL_OPT_READ_TIMEOUT, reinterpret_cast<const char *>(&timeout)))
|
||||||
throw ConnectionFailed(mysql_error(&driver), mysql_errno(&driver));
|
throw ConnectionFailed(mysql_error(&driver), mysql_errno(&driver));
|
||||||
|
|
||||||
if (!mysql_real_connect(&driver, server, user, password, db, port, NULL, driver.client_flag))
|
if (!mysql_real_connect(&driver, server, user, password, db, port, NULL, driver.client_flag))
|
||||||
|
Loading…
Reference in New Issue
Block a user