~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

merge remove unused row type in table message

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
  virtual ha_rows estimate_rows_upper_bound()
321
321
  { return stats.records+EXTRA_RECORDS; }
322
322
 
323
 
  /**
324
 
    Get the row type from the storage engine.  If this method returns
325
 
    ROW_TYPE_NOT_USED, the information in HA_CREATE_INFO should be used.
326
 
  */
327
 
  virtual enum row_type get_row_type() const { return ROW_TYPE_NOT_USED; }
328
 
 
329
323
  virtual const char *index_type(uint32_t)
330
324
  { assert(0); return "";}
331
325