1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

test updates

This commit is contained in:
jmiller@mysql.com
2006-02-09 15:29:57 +01:00
parent 3c426cd787
commit a66d8a5b3b
7 changed files with 15 additions and 8 deletions

View File

@@ -1,10 +1,11 @@
source include/master-slave.inc;
create table t1 (a int);
create table t1 (a int primary key);
create table t2 (a int);
insert into t1 values (1);
insert into t2 values (1);
delete t1.* from t1, t2 where t1.a = t2.a;
save_master_pos;