Commit 4faad7a7 authored by vasil's avatar vasil

branches/zip:

Fix typo in comment
parent 91c1b547
...@@ -25,7 +25,7 @@ replace into t1 select * from t2; ...@@ -25,7 +25,7 @@ replace into t1 select * from t2;
connection b; connection b;
set session transaction isolation level read committed; set session transaction isolation level read committed;
set autocommit=0; set autocommit=0;
# should not cuase a lock wait. # should not cause a lock wait.
delete from t2 where a=5; delete from t2 where a=5;
commit; commit;
delete from t2; delete from t2;
...@@ -41,7 +41,7 @@ insert into t1 select * from t2; ...@@ -41,7 +41,7 @@ insert into t1 select * from t2;
connection b; connection b;
set session transaction isolation level read committed; set session transaction isolation level read committed;
set autocommit=0; set autocommit=0;
# should not cuase a lock wait. # should not cause a lock wait.
delete from t2 where a=5; delete from t2 where a=5;
commit; commit;
delete from t2; delete from t2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment