mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
42
mysql-test/main/mysqlshow.test
Normal file
42
mysql-test/main/mysqlshow.test
Normal file
@ -0,0 +1,42 @@
|
||||
# Can't run test of external client with embedded server
|
||||
-- source include/not_embedded.inc
|
||||
# Don't test when thread_pool active
|
||||
--source include/not_threadpool.inc
|
||||
|
||||
--disable_warnings
|
||||
DROP TABLE IF EXISTS t1,t2,test1,test2;
|
||||
--enable_warnings
|
||||
|
||||
#
|
||||
## 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;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
||||
# because of lp:1066512 this test shows xtradb I_S plugins, even when
|
||||
# xtradb is supposed to be disabled
|
||||
|
||||
#
|
||||
# Bug #19147: mysqlshow INFORMATION_SCHEMA does not work
|
||||
#
|
||||
#--exec $MYSQL_SHOW information_schema
|
||||
#--exec $MYSQL_SHOW INFORMATION_SCHEMA
|
||||
#--exec $MYSQL_SHOW inf_rmation_schema
|
||||
|
Reference in New Issue
Block a user