List:Internals« Previous MessageNext Message »
From:ramil Date:December 1 2005 11:31am
Subject:bk commit into 5.0 tree (ramil:1.2036)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of ram. When ram 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.2036 05/12/01 14:31:28 ramil@stripped +2 -0
  Merge rkalimullin@stripped:/home/bk/mysql-5.0
  into  mysql.com:/usr/home/ram/work/mysql-5.0

  sql/sql_class.h
    1.278 05/12/01 14:31:17 ramil@stripped +0 -0
    Auto merged

  sql/sql_class.cc
    1.226 05/12/01 14:31:16 ramil@stripped +0 -0
    Auto merged

# 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:	ramil
# Host:	myoffice.izhnet.ru
# Root:	/usr/home/ram/work/mysql-5.0/RESYNC

--- 1.225/sql/sql_class.cc	2005-12-01 11:13:59 +04:00
+++ 1.226/sql/sql_class.cc	2005-12-01 14:31:16 +04:00
@@ -1949,6 +1949,7 @@ void THD::reset_sub_statement_state(Sub_
   backup->last_insert_id=  last_insert_id;
   backup->next_insert_id=  next_insert_id;
   backup->insert_id_used=  insert_id_used;
+  backup->clear_next_insert_id= clear_next_insert_id;
   backup->limit_found_rows= limit_found_rows;
   backup->examined_row_count= examined_row_count;
   backup->sent_row_count=   sent_row_count;
@@ -2000,6 +2001,7 @@ void THD::restore_sub_statement_state(Su
   last_insert_id=   backup->last_insert_id;
   next_insert_id=   backup->next_insert_id;
   insert_id_used=   backup->insert_id_used;
+  clear_next_insert_id= backup->clear_next_insert_id;
   limit_found_rows= backup->limit_found_rows;
   sent_row_count=   backup->sent_row_count;
   client_capabilities= backup->client_capabilities;

--- 1.277/sql/sql_class.h	2005-12-01 11:13:59 +04:00
+++ 1.278/sql/sql_class.h	2005-12-01 14:31:17 +04:00
@@ -1090,7 +1090,7 @@ public:
   ha_rows    cuted_fields, sent_row_count, examined_row_count;
   ulong client_capabilities;
   uint in_sub_stmt;
-  bool enable_slow_log, insert_id_used;
+  bool enable_slow_log, insert_id_used, clear_next_insert_id;
   my_bool no_send_ok;
   SAVEPOINT *savepoints;
 };
Thread
bk commit into 5.0 tree (ramil:1.2036)ramil1 Dec