List:Internals« Previous MessageNext Message »
From:gluh Date:July 14 2005 10:23am
Subject:bk commit into 5.0 tree (gluh:1.1927)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of gluh. When gluh 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.1927 05/07/14 13:23:25 gluh@stripped +1 -0
  valgrind error fix(uninitialiased variable)

  sql/sql_parse.cc
    1.446 05/07/14 13:23:20 gluh@stripped +2 -1
    valgrind error fix(uninitialiased variable)

# 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:	gluh
# Host:	eagle.intranet.mysql.r18.ru
# Root:	/home/gluh/MySQL/Merge/5.0

--- 1.445/sql/sql_parse.cc	Wed Jul 13 19:05:50 2005
+++ 1.446/sql/sql_parse.cc	Thu Jul 14 13:23:20 2005
@@ -1511,7 +1511,8 @@
     the slow log only if opt_log_slow_admin_statements is set.
   */
   thd->enable_slow_log= TRUE;
-  thd->lex->sql_command= SQLCOM_END; /* to avoid confusing VIEW detectors */
+  thd->lex->sql_command=                  /* to avoid confusing VIEW detectors */
+    thd->lex->orig_sql_command= SQLCOM_END;
   thd->set_time();
   VOID(pthread_mutex_lock(&LOCK_thread_count));
   thd->query_id=query_id;
Thread
bk commit into 5.0 tree (gluh:1.1927)gluh14 Jul