diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-05-03 11:51:22 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-05-03 11:51:22 +0200 |
commit | dbe97bcc56b22da85753d853277f47c47ff42ec1 (patch) | |
tree | 547acf651cd33fe334ca53f3d04d5f27c2bc301d /mysql-test/r/bootstrap.result | |
parent | 0759568b886b8fa788a6936fadf8b7a4d85d779c (diff) | |
download | mariadb-git-dbe97bcc56b22da85753d853277f47c47ff42ec1.tar.gz |
clarify the test case
Diffstat (limited to 'mysql-test/r/bootstrap.result')
-rw-r--r-- | mysql-test/r/bootstrap.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/bootstrap.result b/mysql-test/r/bootstrap.result index c4775a787f2..bb80cf28b56 100644 --- a/mysql-test/r/bootstrap.result +++ b/mysql-test/r/bootstrap.result @@ -15,3 +15,14 @@ SELECT 'bug' as '' FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb' and SUPPORT='YES'; End of 5.5 tests +flush tables; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; +select * from mysql.plugin; +name dl +EXAMPLE ha_example.so +truncate table mysql.plugin; |