~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.h

  • Committer: Jay Pipes
  • Date: 2008-08-01 03:28:12 UTC
  • mto: (264.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 247.
  • Revision ID: jay@mysql.com-20080801032812-8gl0ukak1qcgfyyt
removed view_store_options() function - wasn't used anywhere.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    return ((table_share->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ?
46
46
            "BTREE" : "HASH");
47
47
  }
48
 
  enum row_type get_row_type() const;
 
48
  /* Rows also use a fixed-size format */
 
49
  enum row_type get_row_type() const { return ROW_TYPE_FIXED; }
49
50
  const char **bas_ext() const;
50
51
  uint64_t table_flags() const
51
52
  {