From f82e2887bf5725a40688890ea7669be78198942d Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 5 Aug 2005 13:19:48 -0700 Subject: 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 --- mysql-test/t/heap.test | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mysql-test/t/heap.test') diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test index 6a9ff5c8284..922bd4b9bf0 100644 --- a/mysql-test/t/heap.test +++ b/mysql-test/t/heap.test @@ -437,3 +437,13 @@ insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd drop table t1; # End of 4.1 tests + +# +# Bug #3094: Row format of memory tables should always be reported as Fixed +# +create table t1 (c char(10)) engine=memory; +create table t2 (c varchar(10)) engine=memory; +show table status like 't_'; +drop table t1, t2; + +# End of 5.0 tests -- cgit v1.2.1