Always report row type of 'Fixed' for MEMORY tables. (Bug #3094)

mysql-test/r/heap.result:
  Add new results
mysql-test/t/heap.test:
  Add new regression test
sql/ha_heap.h:
  Always report row type of Fixed for MEMORY tables
This commit is contained in:
unknown 2005-08-05 13:19:48 -07:00
commit f82e2887bf
3 changed files with 19 additions and 0 deletions

View file

@ -43,6 +43,8 @@ public:
return ((table->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ? "BTREE" :
"HASH");
}
/* Rows also use a fixed-size format */
enum row_type get_row_type() const { return ROW_TYPE_FIXED; }
const char **bas_ext() const;
ulong table_flags() const
{