~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-05 18:10:38 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705181038-0ih0nnamu5qrut0y
Fixed prototypes. Cleaned define a little bit.

Show diffs side-by-side

added added

removed removed

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