diff options
author | Alexander Nozdrin <alik@sun.com> | 2010-08-31 13:52:56 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2010-08-31 13:52:56 +0400 |
commit | 65c5e8dcbf829c1e554b44363c4d264202514513 (patch) | |
tree | acedde900b65153364dd01f2ea2473935b3b1213 /sql/sql_parse.cc | |
parent | 13a2e39f2bbcfc5c28a95d608e3f10f3dfaf7acb (diff) | |
download | mariadb-git-65c5e8dcbf829c1e554b44363c4d264202514513.tar.gz |
Bug#27480 (Extend CREATE TEMPORARY TABLES privilege
to allow temp table operations) -- prerequisite patch #2.
Introduce a new form of find_temporary_table() function:
find_temporary_table() by a table key. It will be used
in further patches.
Replace find_temporary_table(table_list->db, table_list->name)
by more appropiate find_temporary_table(table_list) across
the codebase.
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index b78815f0e52..a0b9959e626 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -177,8 +177,7 @@ static bool some_non_temp_table_to_be_updated(THD *thd, TABLE_LIST *tables) for (TABLE_LIST *table= tables; table; table= table->next_global) { DBUG_ASSERT(table->db && table->table_name); - if (table->updating && - !find_temporary_table(thd, table->db, table->table_name)) + if (table->updating && !find_temporary_table(thd, table)) return 1; } return 0; |