Commit b012fca4 authored by unknown's avatar unknown

silence two 'unused variable' warnings

parent 31611c5d
...@@ -3167,7 +3167,6 @@ bool ha_federated::get_error_message(int error, String* buf) ...@@ -3167,7 +3167,6 @@ bool ha_federated::get_error_message(int error, String* buf)
int ha_federated::external_lock(THD *thd, int lock_type) int ha_federated::external_lock(THD *thd, int lock_type)
{ {
int error= 0; int error= 0;
ha_federated *trx= (ha_federated *)thd->ha_data[ht->slot];
DBUG_ENTER("ha_federated::external_lock"); DBUG_ENTER("ha_federated::external_lock");
/* /*
...@@ -3176,6 +3175,8 @@ int ha_federated::external_lock(THD *thd, int lock_type) ...@@ -3176,6 +3175,8 @@ int ha_federated::external_lock(THD *thd, int lock_type)
#ifdef XXX_SUPERCEDED_BY_WL2952 #ifdef XXX_SUPERCEDED_BY_WL2952
if (lock_type != F_UNLCK) if (lock_type != F_UNLCK)
{ {
ha_federated *trx= (ha_federated *)thd->ha_data[ht->slot];
DBUG_PRINT("info",("federated not lock F_UNLCK")); DBUG_PRINT("info",("federated not lock F_UNLCK"));
if (!(thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN))) if (!(thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)))
{ {
...@@ -3228,7 +3229,7 @@ int ha_federated::external_lock(THD *thd, int lock_type) ...@@ -3228,7 +3229,7 @@ int ha_federated::external_lock(THD *thd, int lock_type)
} }
} }
#endif /* XXX_SUPERCEDED_BY_WL2952 */ #endif /* XXX_SUPERCEDED_BY_WL2952 */
DBUG_RETURN(0); DBUG_RETURN(error);
} }
......
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