diff options
author | Sergei Golubchik <sergii@pisem.net> | 2015-02-11 20:40:56 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2015-02-11 20:40:56 +0100 |
commit | 2a1be9cdf81ca77253faaf0e2dfc1dca7f7702f5 (patch) | |
tree | 135d0be8e2c0b4cb99aa61be3e7a506df6b32fb3 /storage/xtradb/row/row0mysql.c | |
parent | d996dc29970b01d4e1fe5f82ff240e643dd53185 (diff) | |
parent | 13927f878e02c33d118cac43b14bd06d2382eb26 (diff) | |
download | mariadb-git-2a1be9cdf81ca77253faaf0e2dfc1dca7f7702f5.tar.gz |
XtraDB 5.5.41-37.0
Diffstat (limited to 'storage/xtradb/row/row0mysql.c')
-rw-r--r-- | storage/xtradb/row/row0mysql.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/storage/xtradb/row/row0mysql.c b/storage/xtradb/row/row0mysql.c index 7028c51babb..9496df8774a 100644 --- a/storage/xtradb/row/row0mysql.c +++ b/storage/xtradb/row/row0mysql.c @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2000, 2013, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2000, 2014, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -3227,6 +3227,9 @@ row_drop_table_for_mysql( ulint namelen; ibool locked_dictionary = FALSE; pars_info_t* info = NULL; + DBUG_ENTER("row_drop_table_for_mysql"); + + DBUG_PRINT("row_drop_table_for_mysql", ("table: %s", name)); ut_a(name != NULL); @@ -3237,7 +3240,7 @@ row_drop_table_for_mysql( "InnoDB: Shut down mysqld and edit my.cnf so that newraw" " is replaced with raw.\n", stderr); - return(DB_ERROR); + DBUG_RETURN(DB_ERROR); } trx->op_info = "dropping table"; @@ -3644,7 +3647,7 @@ funct_exit: srv_wake_master_thread(); - return((int) err); + DBUG_RETURN((int) err); } /*********************************************************************//** |