List:Internals« Previous MessageNext Message »
From:gluh Date:July 14 2005 11:42am
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 14:42:33 gluh@stripped +1 -0
  valgrind error fix(uninitialiased variable) (2nd version)

  sql/sql_lex.cc
    1.156 05/07/14 14:42:28 gluh@stripped +1 -1
    valgrind error fix(uninitialiased variable) (2nd version)

# 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 14:42:28 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;
Thread
bk commit into 5.0 tree (gluh:1.1927)gluh14 Jul