1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

after merge fix

This commit is contained in:
monty@mashka.mysql.fi
2003-02-08 02:09:21 +02:00
parent 7abe5e234e
commit c4e7cbe158
8 changed files with 20 additions and 17 deletions

View File

@@ -4,9 +4,6 @@ reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
create table t1(a int auto_increment, key(a));
create table t2(b int auto_increment, c int, key(b));
insert into t1 values (1),(2),(3);