diff options
author | unknown <monty@hundin.mysql.fi> | 2002-01-30 15:32:48 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-01-30 15:32:48 +0200 |
commit | 22ab243303fc3b6f66e1951e0d9e3dd06754927d (patch) | |
tree | 0e248240e34cdf714bf85ad1ab61836e1725d64a /sql/sql_rename.cc | |
parent | 5b968bb8ee49008e8adfba898472b20b0cf0524f (diff) | |
download | mariadb-git-22ab243303fc3b6f66e1951e0d9e3dd06754927d.tar.gz |
Added --sql-mode=NO_UNSIGNED_SUBTRACTION
Docs/manual.texi:
More information about UNSIGNED BIGINT arithmetic
sql/slave.cc:
Make binary logs 4G safe
sql/slave.h:
Make binary logs 4G safe
sql/sql_rename.cc:
cleanup
Diffstat (limited to 'sql/sql_rename.cc')
-rw-r--r-- | sql/sql_rename.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/sql_rename.cc b/sql/sql_rename.cc index 2c4c6216ab7..f2a0351361b 100644 --- a/sql/sql_rename.cc +++ b/sql/sql_rename.cc @@ -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()) { |