~jaypipes/drizzle/replication-to-transaction

« back to all changes in this revision

Viewing changes to drizzled/cursor.cc

  • Committer: Brian Aker
  • Date: 2010-03-09 22:58:27 UTC
  • mfrom: (1320.1.18 build)
  • Revision ID: brian@gaz-20100309225827-7igxztca4lrj3fx3
Merge in show status work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
187
187
 
188
188
 
189
189
ha_rows Cursor::records() { return stats.records; }
 
190
uint64_t Cursor::tableSize() { return stats.index_file_length + stats.data_file_length; }
 
191
uint64_t Cursor::rowSize() { return table->getRecordLength() + table->sizeFields(); }
190
192
 
191
193
/**
192
194
  Open database-Cursor.