List:Internals« Previous MessageNext Message »
From:gluh Date:July 14 2005 12:42pm
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 15:42:36 gluh@stripped +2 -0
  valgrind error fix(uninitialiased variable)
  removed unnecessary operation

  sql/sql_parse.cc
    1.446 05/07/14 15:42:31 gluh@stripped +0 -1
    removed unnecessary operation

  sql/sql_lex.cc
    1.156 05/07/14 15:42:31 gluh@stripped +1 -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.155/sql/sql_lex.cc	Wed Jul 13 14:57:01 2005
+++ 1.156/sql/sql_lex.cc	Thu Jul 14 15:42:31 2005
@@ -164,7 +164,7 @@
   lex->current_select= &lex->select_lex;
   lex->yacc_yyss=lex->yacc_yyvs=0;
   lex->ignore_space=test(thd->variables.sql_mode & MODE_IGNORE_SPACE);
-  lex->sql_command=SQLCOM_END;
+  lex->sql_command= lex->orig_sql_command= SQLCOM_END;
   lex->duplicates= DUP_ERROR;
   lex->ignore= 0;
   lex->sphead= NULL;

--- 1.445/sql/sql_parse.cc	Wed Jul 13 19:05:50 2005
+++ 1.446/sql/sql_parse.cc	Thu Jul 14 15:42:31 2005
@@ -5189,7 +5189,6 @@
 {
   SELECT_LEX *select_lex= lex->current_select;
   select_lex->init_select();
-  lex->orig_sql_command= SQLCOM_END;
   lex->wild= 0;
   if (select_lex == &lex->select_lex)
   {
Thread
bk commit into 5.0 tree (gluh:1.1927)gluh14 Jul