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

After merge fix

mysql-test/t/lowercase_table.test:
  MySQL 4.1 does this correct
This commit is contained in:
unknown
2003-06-04 23:17:01 +03:00
parent 13f7e49494
commit c6c60f6ee8
8 changed files with 27 additions and 18 deletions

View File

@@ -71,9 +71,8 @@ create table t2(a int);
insert into t2 values(1),(2);
reset master;
insert into t1 select * from t2;
Duplicate entry '2' for key 1
ERROR 23000: Duplicate entry '2' for key 1
show binlog events;
Log_name Pos Event_type Server_id Orig_log_pos Info
master-bin.001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
master-bin.001 79 Query 1 79 use test; insert into t1 select * from t2
master-bin.000001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
drop table t1, t2;