mirror of
https://github.com/MariaDB/server.git
synced 2026-05-02 13:15:32 +02:00
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:
parent
d17c9b0692
commit
f82e2887bf
3 changed files with 19 additions and 0 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue