~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/t/mysqlshow.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Can't run test of external client with embedded server
 
2
-- source include/not_embedded.inc
 
3
 
 
4
--disable_warnings
 
5
DROP TABLE IF EXISTS t1,t2,test1,test2;
 
6
--enable_warnings
 
7
 
 
8
#
 
9
## Bug #5036 mysqlshow is missing a column
 
10
#
 
11
CREATE TABLE t1 (a int);
 
12
INSERT INTO t1 VALUES (1),(2),(3);
 
13
CREATE TABLE t2 (a int, b int);
 
14
show tables;
 
15
select "--------------------" as "";
 
16
--exec $MYSQL_SHOW test
 
17
select "---- -v ------------" as "";
 
18
--exec $MYSQL_SHOW test -v
 
19
select "---- -v -v ---------" as "";
 
20
--exec $MYSQL_SHOW test -v -v
 
21
select "----- -t -----------" as "";
 
22
--exec $MYSQL_SHOW test -t
 
23
select "---- -v -t ---------" as "";
 
24
--exec $MYSQL_SHOW test -v -t
 
25
select "---- -v -v -t ------" as "";
 
26
--exec $MYSQL_SHOW test -v -v -t
 
27
DROP TABLE t1, t2;
 
28
 
 
29
#
 
30
# Bug #19147: mysqlshow INFORMATION_SCHEMA does not work
 
31
#
 
32
--exec $MYSQL_SHOW information_schema TABLE%
 
33
--exec $MYSQL_SHOW INFORMATION_SCHEMA TABLE%
 
34
--exec $MYSQL_SHOW inf_rmation_schema
 
35
 
 
36
--echo End of 5.0 tests