mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
97907ee8d7
DROP DATABASE in mysqladmin asks for confirmation (again) Added examined_rows to slow query log SHOW CREATE for TEMPORARY table BitKeeper/deleted/.del-shw000001.result~8b20b03d8319b9a5: Delete: mysql-test/r/shw000001.result BitKeeper/deleted/.del-shw000001.test~770d96a2c1c65b20: Delete: mysql-test/t/shw000001.test Docs/manual.texi: Added information about InnoDB and TEMPORARY tables acinclude.m4: Portability fixes client/errmsg.c: merge with libmysqd/errmsg.c client/mysqladmin.c: DROP DATABASE asks for confirmation (again) client/mysqltest.c: Portability fixes configure.in: Portability fixes for SGI compiler on Ia64 extra/resolve_stack_dump.c: Portability fixes include/global.h: Portability fixes isam/_dbug.c: Portability fixes mysql-test/mysql-test-run.sh: Portability fixes mysql-test/r/show_check.result: New test for SHOW CREATE mysql-test/t/show_check.test: New test for SHOW CREATE scripts/make_binary_distribution.sh: Added missing files sql/filesort.cc: Added examined_rows to slow query log sql/log.cc: Added examined_rows to slow query log sql/mysql_priv.h: Added examined_rows to slow query log sql/mysqlbinlog.cc: Fixed core dump when using wrong option sql/mysqld.cc: Removed not used argument sql/sql_base.cc: Fixed name problem with SHOW CREATE for TEMPORARY table sql/sql_class.h: Added examined_rows to slow query log sql/sql_parse.cc: Added examined_rows to slow query log sql/sql_select.cc: Added examined_rows to slow query log sql/sql_select.h: Added examined_rows to slow query log sql/sql_show.cc: Fixed SHOW CREATE for TEMPORARY table sql/sql_table.cc: Added examined_rows to slow query log
67 lines
1.8 KiB
Text
67 lines
1.8 KiB
Text
#
|
|
# Test of some show commands
|
|
#
|
|
drop table if exists t1,t2;
|
|
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);
|
|
create table t2 type=isam select * from t1;
|
|
optimize table t1;
|
|
check table t1,t2;
|
|
repair table t1,t2;
|
|
check table t2,t1;
|
|
lock tables t1 read;
|
|
check table t2,t1;
|
|
show columns from t1;
|
|
show full columns from t1;
|
|
show index from t1;
|
|
drop table t1,t2;
|
|
|
|
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);
|
|
check table t1 type=fast;
|
|
check table t1 type=fast;
|
|
check table t1 type=changed;
|
|
insert into t1 values (5,5,5);
|
|
check table t1 type=changed;
|
|
check table t1 type=medium;
|
|
check table t1 type=extended;
|
|
show index from t1;
|
|
!$1062 insert into t1 values (5,5,5);
|
|
optimize table t1;
|
|
optimize table t1;
|
|
drop table t1;
|
|
|
|
#show variables;
|
|
show variables like "wait_timeout%";
|
|
show variables like "this_doesn't_exists%";
|
|
show table status from test like "this_doesn't_exists%";
|
|
show databases;
|
|
show databases like "test%";
|
|
|
|
#
|
|
# 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;
|
|
|
|
#
|
|
# 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 '',
|
|
name char(20) default 'O''Brien'
|
|
) comment = 'it\'s a table' ;
|
|
show create table t1 ;
|
|
drop table t1;
|