Navigation Menu

Skip to content

Commit

Permalink
fixed test case "information_schema". now compatible with mysql-5.1 a…
Browse files Browse the repository at this point in the history
…nd 5.5.
  • Loading branch information
ikdttr committed Nov 2, 2010
1 parent 2ee47e3 commit 6009dee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
14 changes: 3 additions & 11 deletions test/sql/r/information_schema.result
Expand Up @@ -2,16 +2,8 @@ install plugin groonga soname 'ha_groonga.so';
install plugin groonga_stats soname 'ha_groonga.so';
set storage_engine=groonga;
drop table if exists t1;
show plugins;
Name Status Type Library License
binlog ACTIVE STORAGE ENGINE NULL GPL
partition ACTIVE STORAGE ENGINE NULL GPL
CSV ACTIVE STORAGE ENGINE NULL GPL
MEMORY ACTIVE STORAGE ENGINE NULL GPL
InnoDB DISABLED STORAGE ENGINE NULL GPL
MyISAM ACTIVE STORAGE ENGINE NULL GPL
MRG_MYISAM ACTIVE STORAGE ENGINE NULL GPL
groonga ACTIVE STORAGE ENGINE ha_groonga.so PROPRIETARY
groonga_stats ACTIVE INFORMATION SCHEMA ha_groonga.so PROPRIETARY
select count(*) from information_schema.plugins where plugin_name = "groonga";
count(*)
1
uninstall plugin groonga_stats;
uninstall plugin groonga;
2 changes: 1 addition & 1 deletion test/sql/t/information_schema.test
Expand Up @@ -21,7 +21,7 @@ set storage_engine=groonga;
drop table if exists t1;
--enable_warnings

show plugins;
select count(*) from information_schema.plugins where plugin_name = "groonga";

--disable_warnings
uninstall plugin groonga_stats;
Expand Down

0 comments on commit 6009dee

Please sign in to comment.