Commit e16425ba authored by Marko Mäkelä's avatar Marko Mäkelä

Fix a compiler warning

parent ebe4c65e
...@@ -13027,8 +13027,6 @@ create_table_info_t::set_tablespace_type( ...@@ -13027,8 +13027,6 @@ create_table_info_t::set_tablespace_type(
int int
create_table_info_t::initialize() create_table_info_t::initialize()
{ {
trx_t* parent_trx;
DBUG_ENTER("create_table_info_t::initialize"); DBUG_ENTER("create_table_info_t::initialize");
ut_ad(m_thd != NULL); ut_ad(m_thd != NULL);
...@@ -13050,7 +13048,7 @@ create_table_info_t::initialize() ...@@ -13050,7 +13048,7 @@ create_table_info_t::initialize()
/* Get the transaction associated with the current thd, or create one /* Get the transaction associated with the current thd, or create one
if not yet created */ if not yet created */
parent_trx = check_trx_exists(m_thd); check_trx_exists(m_thd);
DBUG_RETURN(0); DBUG_RETURN(0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment