Below is the list of changes that have just been committed into a local
4.1 repository of serg. When serg 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.2484 06/05/23 21:23:14 serg@stripped +1 -0
C language fix
client/mysqldump.c
1.200 06/05/23 21:23:05 serg@stripped +3 -2
C language fix
# 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: serg
# Host: serg.mylan
# Root: /usr/home/serg/Abk/mysql-4.1
--- 1.199/client/mysqldump.c Fri May 19 13:21:27 2006
+++ 1.200/client/mysqldump.c Tue May 23 21:23:05 2006
@@ -2245,8 +2245,9 @@ static char *get_actual_table_name(const
my_ulonglong numRows= mysql_num_rows(tableRes);
if (numRows > 0)
{
- row= mysql_fetch_row( tableRes );
- ulong *lengths= mysql_fetch_lengths(tableRes);
+ ulong *lengths;
+ row= mysql_fetch_row(tableRes);
+ lengths= mysql_fetch_lengths(tableRes);
name= strmake_root(root, row[0], lengths[0]);
}
mysql_free_result(tableRes);
| Thread |
|---|
| • bk commit into 4.1 tree (serg:1.2484) | Sergei Golubchik | 23 May |