From: Date: May 2 2006 5:10pm Subject: bk commit into 5.0 tree (kroki:1.2102) BUG#15463 List-Archive: http://lists.mysql.com/commits/5805 X-Bug: 15463 Message-Id: <200605021510.k42FAbF9027144@moonlight.intranet> Below is the list of changes that have just been committed into a local 5.0 repository of tomash. When tomash 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.2102 06/05/02 19:10:30 kroki@stripped +1 -0 Bug#15463: EXPLAIN SELECT..INTO hangs the client (QB, command line) Allocation wasn't performed because of bogus short circuit in boolean expression. No test case is provided because there is no way to detect client hanging in current test framework. sql/sql_yacc.yy 1.467 06/05/02 19:10:24 kroki@stripped +1 -1 Fixed bogus boolean expression to its intended meaning: "abort unless in describe mode and allocation succeeded". # 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: kroki # Host: moonlight.intranet # Root: /home/tomash/src/mysql_ab/mysql-5.0-bug15463 --- 1.466/sql/sql_yacc.yy 2006-04-23 08:11:24 +04:00 +++ 1.467/sql/sql_yacc.yy 2006-05-02 19:10:24 +04:00 @@ -5776,7 +5776,7 @@ select_var_list_init: { LEX *lex=Lex; - if (!lex->describe && (!(lex->result= new select_dumpvar()))) + if (!(lex->describe && (lex->result= new select_dumpvar()))) YYABORT; } select_var_list