Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libmysql/errmsg.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const char *client_errors[] = {
"Unknown MySQL error",
"Can't create UNIX socket (%d)",
"Can't connect to local MySQL server through socket '%-.100s' (%d)",
"Can't connect to MySQL server on '%-.100s' (%d)",
"Can't connect to MySQL server on '%-.100s:%d' (%d)",
"Can't create TCP/IP socket (%d)",
"Unknown MySQL server host '%-.100s' (%d)",
"MySQL server has gone away",
Expand Down
2 changes: 1 addition & 1 deletion sql-common/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6113,7 +6113,7 @@ static mysql_state_machine_status csm_begin_connect(mysql_async_connect *ctx) {
DBUG_PRINT("error",
("Got error %d on connect to '%s'", saved_error, host));
set_mysql_extended_error(mysql, CR_CONN_HOST_ERROR, unknown_sqlstate,
ER_CLIENT(CR_CONN_HOST_ERROR), host,
ER_CLIENT(CR_CONN_HOST_ERROR), host, port,
saved_error);
return STATE_MACHINE_FAILED;
}
Expand Down