From: Date: November 13 2007 10:13am Subject: bk commit into 6.0 tree (istruewing:1.2656) BUG#31210 List-Archive: http://lists.mysql.com/commits/37640 X-Bug: 31210 Message-Id: Below is the list of changes that have just been committed into a local 6.0 repository of istruewing. When istruewing 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-11-13 10:13:08+01:00, istruewing@stripped +1 -0 Bug#31210 - INSERT DELAYED crashes server when used on partitioned table Post-merge fix sql/sql_parse.cc@stripped, 2007-11-13 10:13:06+01:00, istruewing@stripped +0 -2 Bug#31210 - INSERT DELAYED crashes server when used on partitioned table Post-merge fix Removal of #ifndef NO_EMBEDDED_ACCESS_CHECKS missed in merge to 6.0. diff -Nrup a/sql/sql_parse.cc b/sql/sql_parse.cc --- a/sql/sql_parse.cc 2007-10-30 14:09:51 +01:00 +++ b/sql/sql_parse.cc 2007-11-13 10:13:06 +01:00 @@ -4874,10 +4874,8 @@ check_table_access(THD *thd, ulong want_ goto deny; } thd->security_ctx= backup_ctx; -#ifndef NO_EMBEDDED_ACCESS_CHECKS return check_grant(thd,want_access & ~EXTRA_ACL,org_tables, test(want_access & EXTRA_ACL), UINT_MAX, no_errors); -#endif deny: thd->security_ctx= backup_ctx; return TRUE;