2005-04-04 21:43:58 +02:00
|
|
|
# Can't run test of external client with embedded server
|
|
|
|
-- source include/not_embedded.inc
|
2010-11-19 14:43:13 +01:00
|
|
|
# Don't test when thread_pool active
|
|
|
|
--source include/not_threadpool.inc
|
2005-04-04 21:43:58 +02:00
|
|
|
|
2005-10-06 16:54:43 +02:00
|
|
|
--disable_warnings
|
2006-01-05 23:47:49 +01:00
|
|
|
DROP TABLE IF EXISTS t1,t2,test1,test2;
|
2005-10-06 16:54:43 +02:00
|
|
|
--enable_warnings
|
|
|
|
|
2005-03-15 19:46:43 +01:00
|
|
|
#
|
|
|
|
## Bug #5036 mysqlshow is missing a column
|
|
|
|
#
|
|
|
|
CREATE TABLE t1 (a int);
|
|
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
|
|
CREATE TABLE t2 (a int, b int);
|
|
|
|
show tables;
|
|
|
|
select "--------------------" as "";
|
|
|
|
--exec $MYSQL_SHOW test
|
|
|
|
select "---- -v ------------" as "";
|
|
|
|
--exec $MYSQL_SHOW test -v
|
|
|
|
select "---- -v -v ---------" as "";
|
|
|
|
--exec $MYSQL_SHOW test -v -v
|
|
|
|
select "----- -t -----------" as "";
|
|
|
|
--exec $MYSQL_SHOW test -t
|
|
|
|
select "---- -v -t ---------" as "";
|
|
|
|
--exec $MYSQL_SHOW test -v -t
|
|
|
|
select "---- -v -v -t ------" as "";
|
|
|
|
--exec $MYSQL_SHOW test -v -v -t
|
|
|
|
DROP TABLE t1, t2;
|
2006-07-22 05:29:25 +02:00
|
|
|
|
|
|
|
--echo End of 5.0 tests
|
2012-10-16 13:04:42 +02:00
|
|
|
|
|
|
|
# because of lp:1066512 this test shows xtradb I_S plugins, even when
|
|
|
|
# xtradb is supposed to be disabled
|
|
|
|
|
2006-07-22 05:29:25 +02:00
|
|
|
#
|
|
|
|
# Bug #19147: mysqlshow INFORMATION_SCHEMA does not work
|
|
|
|
#
|
2013-05-07 13:05:09 +02:00
|
|
|
#--exec $MYSQL_SHOW information_schema
|
|
|
|
#--exec $MYSQL_SHOW INFORMATION_SCHEMA
|
|
|
|
#--exec $MYSQL_SHOW inf_rmation_schema
|
2006-07-22 05:29:25 +02:00
|
|
|
|