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

Fix for Intel compiler (ecc)

Minor cleanups to other patches.
Make --temp-pool default
This commit is contained in:
monty@hundin.mysql.fi
2002-08-08 03:14:44 +03:00
parent 40f8e02831
commit a31406e34e
9 changed files with 46 additions and 22 deletions

View File

@ -1476,7 +1476,7 @@ mysql_execute_command(void)
/* Check that the first table has CREATE privilege */
TABLE_LIST *tmp_table_list=tables->next;
tables->next=0;
bool error=check_grant(thd,CREATE_ACL,tables);
bool error=check_grant(thd, want_priv, tables);
tables->next=tmp_table_list;
if (error)
goto error;