List:Commits« Previous MessageNext Message »
From:kgeorge Date:September 27 2007 11:29am
Subject:bk commit into 5.0 tree (gkodinov:1.2536)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kgeorge. When kgeorge 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-09-27 14:29:46+03:00, gkodinov@stripped +1 -0
  separated an assertion from the assignment (bug 30468)

  sql/sql_acl.cc@stripped, 2007-09-27 14:29:45+03:00, gkodinov@stripped +2 -1
    separated an assertion from the assignment (bug 30468)

diff -Nrup a/sql/sql_acl.cc b/sql/sql_acl.cc
--- a/sql/sql_acl.cc	2007-09-27 12:15:18 +03:00
+++ b/sql/sql_acl.cc	2007-09-27 14:29:45 +03:00
@@ -3888,7 +3888,8 @@ bool check_grant_all_columns(THD *thd, u
             grant->version= grant_version;	/* purecov: inspected */
           }
 
-          DBUG_ASSERT ((grant_table= grant->grant_table) != NULL);
+          grant_table= grant->grant_table;
+          DBUG_ASSERT (grant_table);
         }
       }
 
Thread
bk commit into 5.0 tree (gkodinov:1.2536)kgeorge27 Sep