1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

bug#8151 - truncate leaves a transaction open

deadlock in MYSQL_LOG::new_file()
style fixes
This commit is contained in:
serg@serg.mylan
2005-03-02 10:38:25 +01:00
parent 8f5ca7483a
commit 02d88c398f
13 changed files with 66 additions and 61 deletions

View File

@@ -591,6 +591,7 @@ insert into t1 values(1),(2);
truncate table t1;
commit;
truncate table t1;
truncate table t1;
select * from t1;
insert into t1 values(1),(2);
delete from t1;
@@ -605,6 +606,7 @@ truncate table t1;
insert into t1 values(1),(2);
select * from t1;
truncate table t1;
truncate table t1;
insert into t1 values(1),(2);
delete from t1;
select * from t1;