~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock_multi.result

  • Committer: Brian Aker
  • Date: 2009-01-07 21:26:58 UTC
  • Revision ID: brian@tangent.org-20090107212658-2fh0s2uwh10w68y2
Committing fix lock_multi

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
select n from t1;
7
7
unlock tables;
8
8
n
9
 
4
 
9
1
10
10
drop table t1;
11
11
create table t1(n int);
12
12
insert into t1 values (1);
49
49
lock tables t1 write;
50
50
show columns from t1;
51
51
Field   Type    Null    Key     Default Extra
52
 
a       int(11) YES             NULL    
 
52
a       int     YES             NULL    
53
53
unlock tables;
54
54
drop table t1;
55
 
use mysql;
56
 
LOCK TABLES columns_priv WRITE, db WRITE, host WRITE, user WRITE;
57
 
FLUSH TABLES;
58
 
use mysql;
59
 
SELECT user.Select_priv FROM user, db WHERE user.user = db.user LIMIT 1;
60
 
OPTIMIZE TABLES columns_priv, db, host, user;
61
 
Table   Op      Msg_type        Msg_text
62
 
mysql.columns_priv      optimize        status  OK
63
 
mysql.db        optimize        status  OK
64
 
mysql.host      optimize        status  OK
65
 
mysql.user      optimize        status  OK
66
 
UNLOCK TABLES;
67
 
Select_priv
68
 
N
69
 
use test;
70
 
use test;
71
55
CREATE TABLE t1 (c1 int);
72
56
LOCK TABLE t1 WRITE;
73
57
FLUSH TABLES WITH READ LOCK;
91
75
UNLOCK TABLES;
92
76
DROP DATABASE mysqltest_1;
93
77
ERROR HY000: Can't drop database 'mysqltest_1'; database doesn't exist
94
 
create table t1 (f1 int(12) unsigned not null auto_increment, primary key(f1)) engine=innodb;
 
78
create table t1 (f1 int not null auto_increment, primary key(f1)) engine=innodb;
95
79
lock tables t1 write;
96
80
alter table t1 auto_increment=0;
97
81
alter table t1 auto_increment=0;
98
82
unlock tables;
99
83
drop table t1;
100
84
End of 5.0 tests
101
 
create table t1 (i int);
102
 
lock table t1 read;
103
 
update t1 set i= 10;;
104
 
select * from t1;;
105
 
kill query ID;
106
 
i
107
 
ERROR 70100: Query execution was interrupted
108
 
unlock tables;
109
 
drop table t1;
110
 
drop table if exists t1;
111
 
create table t1 (a int) ENGINE=MEMORY;
112
 
--> client 2
113
 
handler t1 open;
114
 
ERROR HY000: Table storage engine for 't1' doesn't have this option
115
 
--> client 1
116
 
drop table t1;
117
85
drop table if exists t1;
118
86
create table t1 (i int);
119
87
connection: default