Skip to content

Commit e16425b

Browse files
committed
Fix a compiler warning
1 parent ebe4c65 commit e16425b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13027,8 +13027,6 @@ create_table_info_t::set_tablespace_type(
1302713027
int
1302813028
create_table_info_t::initialize()
1302913029
{
13030-
trx_t* parent_trx;
13031-
1303213030
DBUG_ENTER("create_table_info_t::initialize");
1303313031

1303413032
ut_ad(m_thd != NULL);
@@ -13050,7 +13048,7 @@ create_table_info_t::initialize()
1305013048
/* Get the transaction associated with the current thd, or create one
1305113049
if not yet created */
1305213050

13053-
parent_trx = check_trx_exists(m_thd);
13051+
check_trx_exists(m_thd);
1305413052

1305513053
DBUG_RETURN(0);
1305613054
}

0 commit comments

Comments
 (0)