Below is the list of changes that have just been committed into a local
4.1 repository of patg. When patg does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2368 05/08/08 13:50:10 patg@stripped +1 -0
BUG #12119
Removed unnecessary error message from mysql.cc (client program)
client/mysql.cc
1.209 05/08/08 13:50:03 patg@stripped +1 -4
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.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: patg
# Host: krsna.patg.net
# Root: /home/patg/mysql-build/mysql-4.1
--- 1.208/client/mysql.cc 2005-06-20 09:53:54 -07:00
+++ 1.209/client/mysql.cc 2005-08-08 13:50:03 -07:00
@@ -1563,11 +1563,8 @@
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);
| Thread |
|---|
| • bk commit into 4.1 tree (patg:1.2368) BUG#12119 | Patrick Galbraith | 8 Aug |