1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

BUG#28838 - duplicate external_lock in mysql_alter_table

Fixed wrong test case. Added lost row that appeared after fix for
this bug.
This commit is contained in:
svoj@mysql.com/june.mysql.com
2007-07-20 13:27:12 +05:00
parent bc1f8d49ba
commit 2edad3d4ba

View File

@ -1030,6 +1030,7 @@ select * from t2;
c
NULL
1
Two
Three
lock table t2 write, t3 read;
alter table t2 change c vc varchar(100) default "Four", rename to t1;
@ -1046,6 +1047,7 @@ select * from t1;
vc
NULL
1
Two
Three
Four
drop tables t1, t3;