The mysql command-line client did not properly handle MYSQL_HISTFILE being set

to an empty string, or to /dev/null, as we suggest and have suggested in the
documentation. (Bug #34224)
This commit is contained in:
Jim Winstead 2009-05-07 17:48:20 -07:00
parent d115236248
commit 337a20a800

View File

@ -1183,7 +1183,12 @@ int main(int argc,char *argv[])
histfile= 0;
}
}
if (histfile)
/* We used to suggest setting MYSQL_HISTFILE=/dev/null. */
if (histfile && strncmp(histfile, "/dev/null", 10) == 0)
histfile= NULL;
if (histfile && histfile[0])
{
if (verbose)
tee_fprintf(stdout, "Reading history-file %s\n",histfile);
@ -1218,7 +1223,8 @@ sig_handler mysql_end(int sig)
{
mysql_close(&mysql);
#ifdef HAVE_READLINE
if (!status.batch && !quick && !opt_html && !opt_xml && histfile)
if (!status.batch && !quick && !opt_html && !opt_xml &&
histfile && histfile[0])
{
/* write-history */
if (verbose)