mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed access privilege bug in query cache.
Change tests to use database 'mysqltest' instead of 'foo' Add option to not print access denied messages to check_table_access()
This commit is contained in:
@ -283,8 +283,9 @@ uint cached_tables(void);
|
||||
void kill_mysql(void);
|
||||
void close_connection(NET *net,uint errcode=0,bool lock=1);
|
||||
bool check_access(THD *thd,uint access,const char *db=0,uint *save_priv=0,
|
||||
bool no_grant=0);
|
||||
bool check_table_access(THD *thd,uint want_access, TABLE_LIST *tables);
|
||||
bool no_grant=0, bool no_errors=0);
|
||||
bool check_table_access(THD *thd,uint want_access, TABLE_LIST *tables,
|
||||
bool no_errors=0);
|
||||
bool check_process_priv(THD *thd=0);
|
||||
|
||||
int mysql_backup_table(THD* thd, TABLE_LIST* table_list);
|
||||
|
Reference in New Issue
Block a user