1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge sanja.is.com.ua:/home/bell/mysql/mysql-4.1

into sanja.is.com.ua:/home/bell/mysql/work-do-4.1


sql/sql_parse.cc:
  Auto merged
This commit is contained in:
unknown
2003-01-03 19:35:14 +02:00
3 changed files with 27 additions and 3 deletions

View File

@@ -1609,7 +1609,14 @@ mysql_execute_command(THD *thd)
break;
}
case SQLCOM_DO:
res=mysql_do(thd, *lex->insert_list);
if (tables && ((res= check_table_access(thd, SELECT_ACL, tables)) ||
(res= open_and_lock_tables(thd,tables))))
break;
fix_tables_pointers(lex->all_selects_list);
res= mysql_do(thd, *lex->insert_list);
if (thd->net.report_error)
res= -1;
break;
case SQLCOM_EMPTY_QUERY: