summaryrefslogtreecommitdiff
path: root/mysql-test/r/lock.result
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-10-08 07:24:04 +0300
committermonty@hundin.mysql.fi <>2001-10-08 07:24:04 +0300
commit2f603156eddc80d74db506604953c97eab169ace (patch)
tree368e07bec37e044cbac9f95a7ca572c494968756 /mysql-test/r/lock.result
parent938a8dc2ef15eb0878c9a71f2f60ae521084494a (diff)
downloadmariadb-git-2f603156eddc80d74db506604953c97eab169ace.tar.gz
Cleanup after last merge
Diffstat (limited to 'mysql-test/r/lock.result')
-rw-r--r--mysql-test/r/lock.result18
1 files changed, 0 insertions, 18 deletions
diff --git a/mysql-test/r/lock.result b/mysql-test/r/lock.result
index 80194323919..ad5251b9110 100644
--- a/mysql-test/r/lock.result
+++ b/mysql-test/r/lock.result
@@ -43,21 +43,3 @@ Table Op Msg_type Msg_text
test.t2 check error Table 't2' was not locked with LOCK TABLES
unlock tables;
drop table t1,t2;
-create table t1(n int);
-insert into t1 values (1);
-lock tables t1 write;
- update low_priority t1 set n = 4;
- select n from t1;
-unlock tables;
-n
-4
-drop table t1;
-create table t1(n int);
-insert into t1 values (1);
-lock tables t1 read;
- update low_priority t1 set n = 4;
- select n from t1;
-unlock tables;
-n
-1
-drop table t1;