1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed compile error in sql_acl.cc.

This commit is contained in:
pem@mysql.com
2005-12-07 12:58:33 +01:00
parent f998eefe0e
commit 178fcc4fcd

View File

@ -3727,8 +3727,8 @@ bool check_column_grant_in_table_ref(THD *thd, TABLE_LIST * table_ref,
/* Normal or temporary table. */
TABLE *table= table_ref->table;
grant= &(table->grant);
db_name= table->s->db;
table_name= table->s->table_name;
db_name= table->s->db.str;
table_name= table->s->table_name.str;
}
if (grant->want_privilege)