Commit a51ee32b authored by Mikael Ronstrom's avatar Mikael Ronstrom

Fixed missing declaration

parent 0bf0a989
...@@ -256,6 +256,7 @@ int ha_blackhole::index_read_last_map(uchar * buf, const uchar * key, ...@@ -256,6 +256,7 @@ int ha_blackhole::index_read_last_map(uchar * buf, const uchar * key,
int rc; int rc;
DBUG_ENTER("ha_blackhole::index_read_last"); DBUG_ENTER("ha_blackhole::index_read_last");
MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str); MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
THD *thd= ha_thd();
if (thd->system_thread == SYSTEM_THREAD_SLAVE_SQL && thd->query == NULL) if (thd->system_thread == SYSTEM_THREAD_SLAVE_SQL && thd->query == NULL)
rc= 0; rc= 0;
else else
......
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