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

Added --sql-mode=NO_UNSIGNED_SUBTRACTION

This commit is contained in:
monty@hundin.mysql.fi
2002-01-30 15:32:48 +02:00
parent 2c24b6fb9e
commit 6a1b08cbd4
8 changed files with 53 additions and 20 deletions

View File

@ -35,8 +35,10 @@ bool mysql_rename_tables(THD *thd, TABLE_LIST *table_list)
TABLE_LIST *lock_table,*ren_table=0;
DBUG_ENTER("mysql_rename_tables");
/* Avoid problems with a rename on a table that we have locked or
if the user is trying to to do this in a transcation context */
/*
Avoid problems with a rename on a table that we have locked or
if the user is trying to to do this in a transcation context
*/
if (thd->locked_tables || thd->active_transaction())
{