~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/data_dictionary.cc

Merge Stewart - update to innodb 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
 
206
206
  trx_i_s_cache_start_read(trx_i_s_cache);
207
207
 
208
 
  number_rows= trx_i_s_cache_get_rows_used(trx_i_s_cache, I_S_INNODB_TRX);
 
208
  if (innobase_strcasecmp(table_name, "INNODB_TRX") == 0)
 
209
    number_rows= trx_i_s_cache_get_rows_used(trx_i_s_cache, I_S_INNODB_TRX);
 
210
  else if (innobase_strcasecmp(table_name, "INNODB_LOCKS") == 0)
 
211
    number_rows= trx_i_s_cache_get_rows_used(trx_i_s_cache, I_S_INNODB_LOCKS);
 
212
  else if (innobase_strcasecmp(table_name, "INNODB_LOCK_WAITS") == 0)
 
213
    number_rows= trx_i_s_cache_get_rows_used(trx_i_s_cache, I_S_INNODB_LOCK_WAITS);
209
214
 
210
215
  record_number= 0;
211
216
}