diff options
author | unknown <timour@mysql.com> | 2004-12-27 14:05:35 +0200 |
---|---|---|
committer | unknown <timour@mysql.com> | 2004-12-27 14:05:35 +0200 |
commit | b4c61152d3e30d9dca00d702053264bc4a610c73 (patch) | |
tree | 6c2c972b53853b7681cacae710b29789006db5ee /mysql-test/t/merge.test | |
parent | 1548c6b765464ef05c12fd0147819e1b35791bf3 (diff) | |
download | mariadb-git-b4c61152d3e30d9dca00d702053264bc4a610c73.tar.gz |
Fix for BUG#7377. This fix adds the same implementation for ha_myisammgr::index_type as in version 5.0.
mysql-test/r/merge.result:
Added test result for BUG#7377.
mysql-test/t/merge.test:
Added test for BUG#7377.
sql/ha_myisammrg.cc:
Added implementation for handler::index_type.
sql/ha_myisammrg.h:
Added implementation for handler::index_type.
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r-- | mysql-test/t/merge.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test index b628cb07f7b..508f9da225e 100644 --- a/mysql-test/t/merge.test +++ b/mysql-test/t/merge.test @@ -301,5 +301,8 @@ select a,b,c from t3 force index (a) where a=1 order by a,b,c; explain select a,b,c from t3 force index (a) where a=1 order by a desc, b desc, c desc; select a,b,c from t3 force index (a) where a=1 order by a desc, b desc, c desc; +# BUG#7377 SHOW index on MERGE table crashes debug server +show index from t3; + drop table t1, t2, t3; |