List:Commits« Previous MessageNext Message »
From:Sergei Golubchik Date:February 16 2006 11:32am
Subject:bk commit into 5.1 tree (serg:1.2112)
View as plain text  
Below is the list of changes that have just been committed into a local
5.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.2112 06/02/16 12:31:33 serg@stripped +1 -0
  missing DBUG_RETURN

  client/mysqldump.c
    1.224 06/02/16 12:31:16 serg@stripped +2 -2
    missing DBUG_RETURN

# 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-5.1

--- 1.223/client/mysqldump.c	Thu Feb  2 18:53:59 2006
+++ 1.224/client/mysqldump.c	Thu Feb 16 12:31:16 2006
@@ -2905,7 +2905,7 @@ static int get_actual_table_name(const c
     }
     mysql_free_result(table_res);
   }
-  return retval;
+  DBUG_RETURN(retval);
 }
 
 
@@ -2920,7 +2920,7 @@ static int dump_selected_tables(char *db
   DBUG_ENTER("dump_selected_tables");
 
   if (init_dumping(db))
-    return 1;
+    DBUG_RETURN(1);
 
   /* Init hash table for storing the actual name of tables to dump */
   if (hash_init(&dump_tables, charset_info, 16, 0, 0,
Thread
bk commit into 5.1 tree (serg:1.2112)Sergei Golubchik16 Feb