Below is the list of changes that have just been committed into a local
5.1 repository of alik. When alik 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.2087 06/02/08 12:54:54 anozdrin@stripped +1 -0
Fix for BUG#17180: Failure in trigger-grant on Solaris.
The problem is that LEX_STRING was used instead of LEX_STRING::str.
sql/sql_trigger.cc
1.46 06/02/08 12:54:51 anozdrin@stripped +1 -1
Fix typo: we should have used LEX_STRING::str instead of LEX_STRING.
# 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: anozdrin
# Host: station.home
# Root: /home/alik/Documents/AllProgs/MySQL/devel/5.1-tree
--- 1.45/sql/sql_trigger.cc 2006-02-06 15:23:14 +03:00
+++ 1.46/sql/sql_trigger.cc 2006-02-08 12:54:51 +03:00
@@ -1183,7 +1183,7 @@
my_error(ER_TABLEACCESS_DENIED_ERROR, MYF(0), priv_desc,
thd->security_ctx->priv_user, thd->security_ctx->host_or_ip,
- table->s->table_name);
+ table->s->table_name.str);
sp_restore_security_context(thd, save_ctx);
return TRUE;
| Thread |
|---|
| • bk commit into 5.1 tree (anozdrin:1.2087) BUG#17180 | Alexander Nozdrin | 8 Feb |