diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-12-15 14:37:38 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-12-15 14:37:38 +0100 |
commit | 818d68abe67a4cf771d32bfa2b3283f6753ff70d (patch) | |
tree | 5f2daec3fc38a954aac375eba7ffdd16b1ea2e6c /mysql-test/r/partition_innodb.result | |
parent | 2f2758604bf949a2078b251fdb45c6878e745fef (diff) | |
download | mariadb-git-818d68abe67a4cf771d32bfa2b3283f6753ff70d.tar.gz |
Fix for mysql-5.1-performance-version, transaction information
removed from SHOW ENGINE InnoDB STATUS
Diffstat (limited to 'mysql-test/r/partition_innodb.result')
-rw-r--r-- | mysql-test/r/partition_innodb.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/partition_innodb.result b/mysql-test/r/partition_innodb.result index ad4d08e89ff..af277e5ce40 100644 --- a/mysql-test/r/partition_innodb.result +++ b/mysql-test/r/partition_innodb.result @@ -11,13 +11,7 @@ SET @old_tx_isolation := @@session.tx_isolation; SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED; SET autocommit = 0; UPDATE t1 SET DATA = data*2 WHERE id = 3; -SHOW ENGINE InnoDB STATUS; -Type Name Status -InnoDB 2 lock struct(s) 1 row lock(s) UPDATE t1 SET data = data*2 WHERE data = 2; -SHOW ENGINE InnoDB STATUS; -Type Name Status -InnoDB 6 lock struct(s) 2 row lock(s) SET @@session.tx_isolation = @old_tx_isolation; DROP TABLE t1; # Bug#37721, test of ORDER BY on PK and WHERE on INDEX |