From: Date: June 13 2007 3:46am Subject: bk commit into 5.0 tree (dkatz:1.2533) BUG#28897 List-Archive: http://lists.mysql.com/commits/28620 X-Bug: 28897 Message-Id: <20070613014656.9FFA448A1FF@damien-katzs-computer.local> Below is the list of changes that have just been committed into a local 5.0 repository of dkatz. When dkatz 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@stripped, 2007-06-12 21:46:50-04:00, dkatz@stripped +1 -0 Bug #28897 UUID() returns non-unique values when query cache is enabled Removed the ability to cache queries with UUID(). sql/item_create.cc@stripped, 2007-06-12 21:46:47-04:00, dkatz@stripped +1 -0 Removed the ability to cache queries with UUID(). # 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: dkatz # Host: damien-katzs-computer.local # Root: /Users/dkatz/50_win --- 1.63/sql/item_create.cc 2007-05-09 15:17:20 -04:00 +++ 1.64/sql/item_create.cc 2007-06-12 21:46:47 -04:00 @@ -418,6 +418,7 @@ Item *create_func_unhex(Item* a) Item *create_func_uuid(void) { + current_thd->lex->safe_to_cache_query= 0; return new Item_func_uuid(); }