~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/flush_table.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
insert into t1 values(0);
4
4
lock table t1 read;
5
5
flush table t1;
 
6
ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
 
7
unlock tables;
 
8
lock table t1 write;
 
9
flush table t1;
6
10
check table t1;
7
11
Table   Op      Msg_type        Msg_text
8
12
test.t1 check   status  OK
9
13
unlock tables;
10
 
lock table t1 read;
11
 
lock table t1 read;
12
 
flush table t1;
13
 
select * from t1;
14
 
a
15
 
1
16
 
unlock tables;
17
 
select * from t1;
18
 
a
19
 
1
20
 
unlock tables;
21
 
lock table t1 write;
22
 
lock table t1 read;
23
 
flush table t1;
24
 
select * from t1;
25
 
a
26
 
1
27
 
unlock tables;
28
 
unlock tables;
29
 
lock table t1 read;
 
14
lock table t1 write;
 
15
lock table t1 read;
 
16
flush table t1;
 
17
select * from t1;
 
18
a
 
19
1
 
20
unlock tables;
 
21
unlock tables;
 
22
lock table t1 write;
30
23
lock table t1 write;
31
24
flush table t1;
32
25
select * from t1;