diff options
author | serg@serg.mylan <> | 2005-04-14 18:14:54 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2005-04-14 18:14:54 +0200 |
commit | 533e0551f20afb356936c2ecd966721c911d688e (patch) | |
tree | 962ce86bfc4a780ef1e0ff19b8cc6f2b4366be91 /mysql-test/t | |
parent | 8790645b487ce26aedea2530995eaab089f395f8 (diff) | |
download | mariadb-git-533e0551f20afb356936c2ecd966721c911d688e.tar.gz |
TRUNCATE is always a transaction on itself. pretent we're in auto-commit mode
bug#8151
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/innodb.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index 34eabcc22df..2c8002ea841 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -528,6 +528,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; |