mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
A fix (bug #5055: SQL_SELECT_LIMIT=0 crashes command line client):
mysql outwits itself.
This commit is contained in:
@@ -2351,13 +2351,16 @@ com_status(String *buffer __attribute__((unused)),
|
|||||||
MYSQL_RES *result;
|
MYSQL_RES *result;
|
||||||
LINT_INIT(result);
|
LINT_INIT(result);
|
||||||
tee_fprintf(stdout, "\nConnection id:\t\t%lu\n",mysql_thread_id(&mysql));
|
tee_fprintf(stdout, "\nConnection id:\t\t%lu\n",mysql_thread_id(&mysql));
|
||||||
if (!mysql_query(&mysql,"select DATABASE(),USER()") &&
|
if (!mysql_query(&mysql,"select DATABASE(), USER() limit 1") &&
|
||||||
(result=mysql_use_result(&mysql)))
|
(result=mysql_use_result(&mysql)))
|
||||||
{
|
{
|
||||||
MYSQL_ROW cur=mysql_fetch_row(result);
|
MYSQL_ROW cur=mysql_fetch_row(result);
|
||||||
|
if (cur)
|
||||||
|
{
|
||||||
tee_fprintf(stdout, "Current database:\t%s\n", cur[0] ? cur[0] : "");
|
tee_fprintf(stdout, "Current database:\t%s\n", cur[0] ? cur[0] : "");
|
||||||
tee_fprintf(stdout, "Current user:\t\t%s\n",cur[1]);
|
tee_fprintf(stdout, "Current user:\t\t%s\n", cur[1]);
|
||||||
(void) mysql_fetch_row(result); // Read eof
|
}
|
||||||
|
mysql_free_result(result);
|
||||||
}
|
}
|
||||||
#ifdef HAVE_OPENSSL
|
#ifdef HAVE_OPENSSL
|
||||||
if (mysql.net.vio && mysql.net.vio->ssl_arg &&
|
if (mysql.net.vio && mysql.net.vio->ssl_arg &&
|
||||||
|
Reference in New Issue
Block a user