mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
updated lock test
mysql-test/r/lock.result: updated result mysql-test/t/lock.test: updated test
This commit is contained in:
@@ -6,3 +6,5 @@ Table Op Msg_type Msg_text
|
||||
test.t2 check error Table 't2' was not locked with LOCK TABLES
|
||||
n
|
||||
1
|
||||
n
|
||||
1
|
||||
|
||||
@@ -75,3 +75,19 @@ connection reader;
|
||||
reap;
|
||||
drop table t1;
|
||||
|
||||
connection locker;
|
||||
create table t1(n int);
|
||||
insert into t1 values (1);
|
||||
lock tables t1 read;
|
||||
connection writer;
|
||||
send update low_priority t1 set n = 4;
|
||||
connection reader;
|
||||
send select n from t1;
|
||||
connection locker;
|
||||
unlock tables;
|
||||
connection writer;
|
||||
reap;
|
||||
connection reader;
|
||||
reap;
|
||||
drop table t1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user