diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 16:07:40 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 16:07:40 +0400 |
commit | 66acbbe41ffc92bc953b4d507fbb8eb2241958a9 (patch) | |
tree | f737c5eb667e29a12e5f124d6a4f8ed48aa6b2d7 /mysql-test/suite/innodb | |
parent | bb8eec696e6da7eafb252b7dff27d2ccec06313c (diff) | |
download | mariadb-git-66acbbe41ffc92bc953b4d507fbb8eb2241958a9.tar.gz |
Applying InnoDB snapshot
Detailed revision comments:
r6786 | vasil | 2010-03-10 09:16:50 +0200 (Wed, 10 Mar 2010) | 4 lines
branches/zip:
Fix typo in comment
Diffstat (limited to 'mysql-test/suite/innodb')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb-consistent.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/t/innodb-consistent.test b/mysql-test/suite/innodb/t/innodb-consistent.test index b58d0cb0e62..25bdf78e96b 100644 --- a/mysql-test/suite/innodb/t/innodb-consistent.test +++ b/mysql-test/suite/innodb/t/innodb-consistent.test @@ -26,7 +26,7 @@ replace into t1 select * from t2; connection b; set session transaction isolation level read committed; set autocommit=0; -# should not cuase a lock wait. +# should not cause a lock wait. delete from t2 where a=5; commit; delete from t2; @@ -42,7 +42,7 @@ insert into t1 select * from t2; connection b; set session transaction isolation level read committed; set autocommit=0; -# should not cuase a lock wait. +# should not cause a lock wait. delete from t2 where a=5; commit; delete from t2; |