64 lines
1.6 KiB
Plaintext
Executable File
64 lines
1.6 KiB
Plaintext
Executable File
# Can't run test of external client with embedded server
|
|
-- source include/not_embedded.inc
|
|
# Test lists tables in Information_schema, and InnoDB adds some
|
|
-- source include/have_innodb.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;
|
|
|
|
#
|
|
# Bug #19147: mysqlshow INFORMATION_SCHEMA does not work
|
|
#
|
|
--exec $MYSQL_SHOW information_schema
|
|
--exec $MYSQL_SHOW INFORMATION_SCHEMA
|
|
--exec $MYSQL_SHOW inf_rmation_schema
|
|
|
|
#
|
|
# WL#3126 TCP address binding for mysql client library;
|
|
# - running mysqlshow --protcol=tcp --bind-address=127.0.0.1
|
|
#
|
|
--exec $MYSQL_SHOW --protocol=tcp --bind-address=127.0.0.1 test
|
|
|
|
--echo #
|
|
--echo # Bug#12688860 : SECURITY RECOMMENDATION: PASSWORDS ON CLI
|
|
--echo #
|
|
|
|
--disable_warnings
|
|
DROP DATABASE IF EXISTS b12688860_db;
|
|
--enable_warnings
|
|
|
|
CREATE DATABASE b12688860_db;
|
|
CREATE TABLE b12688860_db.b12688860_tab (c1 INT);
|
|
|
|
--exec $MYSQL_SHOW -uroot --password="" b12688860_db 2>&1
|
|
|
|
DROP TABLE b12688860_db.b12688860_tab;
|
|
DROP DATABASE b12688860_db;
|
|
|
|
--echo
|
|
--echo End of tests
|