diff options
author | unknown <patg@krsna.patg.net> | 2005-08-08 13:50:10 -0700 |
---|---|---|
committer | unknown <patg@krsna.patg.net> | 2005-08-08 13:50:10 -0700 |
commit | d4f7a6a56427bc3a2b240e69314ee0d13aea6a1a (patch) | |
tree | 7443f8dbac154e19fb711ec2cab713753e150661 /client | |
parent | fdb50372f34f2a64928deb2b6d4c7e842d61c48b (diff) | |
download | mariadb-git-d4f7a6a56427bc3a2b240e69314ee0d13aea6a1a.tar.gz |
BUG #12119
Removed unnecessary error message from mysql.cc (client program)
client/mysql.cc:
BUG #12119
The error message "Didn't find any fields in table ..." would
be printed out when a table was created and dropped in rapid succession
via a perl script. The client would get a list of tables, meanwhile, the
one table would be deleted, and then this error message printed when the
table was not found, which it should just quietly not print the fields.
Removing the error message fixes this issue.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 5454c76e720..63173aab20d 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -1563,11 +1563,8 @@ You can turn off this feature to get a quicker startup with -A\n\n"); mysql_free_result(fields); } else - { - tee_fprintf(stdout, - "Didn't find any fields in table '%s'\n",table_row[0]); field_names[i]= 0; - } + i++; } mysql_free_result(tables); |