1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

show_check.test fixed cleanup problem

rpl000014.test	fixed bug in testcase
rename.test	fixed cleanup problem
handler.cc	added a comment
sql_class.h	fixed bug in active_transaction() when MySQL was not compiled with transaction support
This commit is contained in:
sasha@mysql.sashanet.com
2001-01-02 21:46:33 -07:00
parent 9ff59511a5
commit e962b04bd0
5 changed files with 9 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Test of rename table
#
drop table if exists t1,t2,t3,t4;
drop table if exists t0,t1,t2,t3,t4;
create table t0 SELECT 1,"table 1";
create table t2 SELECT 2,"table 2";
create table t3 SELECT 3,"table 3";

View File

@ -15,6 +15,7 @@ change master to master_log_pos=173;
show slave status;
connection master;
show master status;
create table if not exists foo(n int);
drop table if exists foo;
create table foo (n int);
insert into foo values (1),(2),(3);

View File

@ -1,6 +1,7 @@
#
# 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;