1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Test case updates and new test cases added to CRBR

This commit is contained in:
jmiller@mysql.com
2006-02-16 04:42:16 +01:00
parent 20d12aa85b
commit b84ee0dec8
60 changed files with 2451 additions and 193 deletions

View File

@@ -0,0 +1,13 @@
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
CREATE TABLE t1 (a INT) ENGINE=NDB;
begin;
insert into t1 values(1);
flush tables with read lock;
commit;
unlock tables;
drop table t1;