2000-12-28 02:56:38 +01:00
#
# Test of some show commands
#
2001-10-08 03:58:07 +02:00
drop table if exists t1,t2;
2000-12-28 02:56:38 +01:00
create table t1 (a int not null primary key, b int not null,c int not null, key(b,c));
insert into t1 values (1,2,2),(2,2,3),(3,2,4),(4,2,4);
2002-03-13 18:20:17 +01:00
check table t1 fast;
check table t1 fast;
check table t1 changed;
2000-12-28 02:56:38 +01:00
insert into t1 values (5,5,5);
2002-03-13 18:20:17 +01:00
check table t1 changed;
check table t1 medium;
check table t1 extended;
2001-03-15 12:36:14 +01:00
show index from t1;
2000-12-28 02:56:38 +01:00
!$1062 insert into t1 values (5,5,5);
optimize table t1;
optimize table t1;
drop table t1;
2001-01-03 01:15:48 +01:00
#show variables;
show variables like "wait_timeout%";
2002-04-18 17:24:14 +02:00
show variables like "WAIT_timeout%";
2001-01-03 01:15:48 +01:00
show variables like "this_doesn't_exists%";
show table status from test like "this_doesn't_exists%";
show databases;
show databases like "test%";
2001-03-15 12:36:14 +01:00
#
# Check of show index
#
create table t1 (f1 int not null, f2 int not null, f3 int not null, f4 int not null, primary key(f1,f2,f3,f4));
insert into t1 values (1,1,1,0),(1,1,2,0),(1,1,3,0),(1,2,1,0),(1,2,2,0),(1,2,3,0),(1,3,1,0),(1,3,2,0),(1,3,3,0),(1,1,1,1),(1,1,2,1),(1,1,3,1),(1,2,1,1),(1,2,2,1),(1,2,3,1),(1,3,1,1),(1,3,2,1),(1,3,3,1);
analyze table t1;
show index from t1;
repair table t1;
show index from t1;
drop table t1;
2001-04-25 21:44:27 +02:00
#
# Test of SHOW CREATE
#
create temporary table t1 (a int not null);
show create table t1;
alter table t1 rename t2;
show create table t2;
drop table t2;
create table t1 (
test_set set( 'val1', 'val2', 'val3' ) not null default '',
2002-06-04 07:23:57 +02:00
name char(20) default 'O''Brien' comment 'O''Brien as default',
c int not null comment 'int column'
2001-04-25 21:44:27 +02:00
) comment = 'it\'s a table' ;
show create table t1 ;
2002-06-04 07:23:57 +02:00
show full columns from t1;
2001-04-25 21:44:27 +02:00
drop table t1;
2001-06-21 09:50:14 +02:00
create table t1 (a int not null, unique aa (a));
show create table t1;
drop table t1;
create table t1 (a int not null, primary key (a));
show create table t1;
drop table t1;
2001-07-08 03:15:41 +02:00
flush tables;
show open tables;
create table t1(n int);
insert into t1 values (1);
show open tables;
drop table t1;
2001-09-30 04:47:35 +02:00
create table t1 (a int not null, b VARCHAR(10), INDEX (b) ) AVG_ROW_LENGTH=10 CHECKSUM=1 COMMENT="test" TYPE=MYISAM MIN_ROWS=10 MAX_ROWS=100 PACK_KEYS=1 DELAY_KEY_WRITE=1 ROW_FORMAT=fixed;
show create table t1;
alter table t1 MAX_ROWS=200 ROW_FORMAT=dynamic PACK_KEYS=0;
show create table t1;
ALTER TABLE t1 AVG_ROW_LENGTH=0 CHECKSUM=0 COMMENT="" MIN_ROWS=0 MAX_ROWS=0 PACK_KEYS=DEFAULT DELAY_KEY_WRITE=0 ROW_FORMAT=default;
show create table t1;
drop table t1;
2002-05-16 17:20:49 +02:00
2002-04-26 12:56:32 +02:00
create table t1 (a decimal(9,2), b decimal (9,0), e double(9,2), f double(5,0), h float(3,2), i float(3,0));
show columns from t1;
2002-06-04 07:23:57 +02:00
show full columns from t1;
2002-04-26 12:56:32 +02:00
drop table t1;
# Check auto conversions of types
create table t1 (c decimal, d double, f float, r real);
show columns from t1;
drop table t1;
create table t1 (c decimal(3,3), d double(3,3), f float(3,3));
show columns from t1;
drop table t1;