List:Internals« Previous MessageNext Message »
From:sanja Date:May 4 2004 10:07am
Subject:bk commit into 3.23 tree (1.1438)
View as plain text  
Below is the list of changes that have just been committed into a local
3.23 repository of bell. When bell 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://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.1438 04/05/04 13:07:36 bell@stripped +1 -0
  fixed db name and layout (can cause very rare race condition bug)

  sql/sql_acl.cc
    1.45 04/05/04 13:07:34 bell@stripped +2 -2
    fixed db name and layout (can cause very rare race condition bug)

# 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:	bell
# Host:	sanja.is.com.ua
# Root:	/home/bell/mysql/bk/work-grants-3.23

--- 1.44/sql/sql_acl.cc	Tue Sep  2 12:18:12 2003
+++ 1.45/sql/sql_acl.cc	Tue May  4 13:07:34 2004
@@ -2141,9 +2141,9 @@
   if (table->grant.version != grant_version)
   {
     table->grant.grant_table=
-      table_hash_search(thd->host,thd->ip,thd->db,
+      table_hash_search(thd->host, thd->ip, table->table_cache_key,
 			thd->priv_user,
-			table->real_name,0);	/* purecov: inspected */
+			table->real_name, 0);	/* purecov: inspected */
     table->grant.version=grant_version;		/* purecov: inspected */
   }
   if (!(grant_table=table->grant.grant_table))
Thread
bk commit into 3.23 tree (1.1438)sanja4 May