1# Can't run test of external client with embedded server
2-- source include/not_embedded.inc
3# Don't test when thread_pool active
4--source include/not_threadpool.inc
5
6--disable_warnings
7DROP TABLE IF EXISTS t1,t2,test1,test2;
8--enable_warnings
9
10#
11## Bug #5036 mysqlshow is missing a column
12#
13CREATE TABLE t1 (a int);
14INSERT INTO t1 VALUES (1),(2),(3);
15CREATE TABLE t2 (a int, b int);
16show tables;
17select "--------------------" as "";
18--exec $MYSQL_SHOW test
19select "---- -v ------------" as "";
20--exec $MYSQL_SHOW test -v
21select "---- -v -v ---------" as "";
22--exec $MYSQL_SHOW test -v -v
23select "----- -t -----------" as "";
24--exec $MYSQL_SHOW test -t
25select "---- -v -t ---------" as "";
26--exec $MYSQL_SHOW test -v -t
27select "---- -v -v -t ------" as "";
28--exec $MYSQL_SHOW test -v -v -t
29DROP TABLE t1, t2;
30
31--echo End of 5.0 tests
32
33# because of lp:1066512 this test shows xtradb I_S plugins, even when
34# xtradb is supposed to be disabled
35
36#
37# Bug #19147: mysqlshow INFORMATION_SCHEMA does not work
38#
39#--exec $MYSQL_SHOW information_schema
40#--exec $MYSQL_SHOW INFORMATION_SCHEMA
41#--exec $MYSQL_SHOW inf_rmation_schema
42
43