~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.h

  • Committer: Harrison Fisk
  • Date: 2008-08-05 05:01:04 UTC
  • mto: (261.1.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 264.
  • Revision ID: harrison@mysql.com-20080805050104-bz1tt53bp1dg996e
Port Ebay/Google memory storage engine variable width columns.  

See: http://code.google.com/p/mysql-heap-dynamic-rows/

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
 
  /* Rows also use a fixed-size format */
49
 
  enum row_type get_row_type() const { return ROW_TYPE_FIXED; }
 
48
  enum row_type get_row_type() const;
50
49
  const char **bas_ext() const;
51
50
  uint64_t table_flags() const
52
51
  {