~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock.test

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
--disable_warnings
6
6
drop table if exists t1,t2;
7
7
--enable_warnings
8
 
CREATE TABLE t1 (  `id` int(11) NOT NULL default '0', `id2` int(11) NOT NULL default '0', `id3` int(11) NOT NULL default '0', `dummy1` char(30) default NULL, PRIMARY KEY  (`id`,`id2`), KEY `index_id3` (`id3`)) ENGINE=MyISAM;
 
8
CREATE TABLE t1 (  `id` int NOT NULL default '0', `id2` int NOT NULL default '0', `id3` int NOT NULL default '0', `dummy1` char(30) default NULL, PRIMARY KEY  (`id`,`id2`), KEY `index_id3` (`id3`)) ENGINE=MyISAM;
9
9
insert into t1 (id,id2) values (1,1),(1,2),(1,3);
10
10
LOCK TABLE t1 WRITE;
11
11
select dummy1,count(distinct id) from t1 group by dummy1;
30
30
#
31
31
 
32
32
CREATE TABLE t1 (
33
 
  index1 smallint(6) default NULL,
34
 
  nr smallint(6) default NULL,
 
33
  index1 smallint default NULL,
 
34
  nr smallint default NULL,
35
35
  KEY index1(index1)
36
36
) ENGINE=MyISAM;
37
37
 
38
38
CREATE TABLE t2 (
39
 
  nr smallint(6) default NULL,
 
39
  nr smallint default NULL,
40
40
  name varchar(20) default NULL
41
41
) ENGINE=MyISAM;
42
42
 
84
84
 
85
85
# Bug7241 - Invalid response when DELETE .. USING and LOCK TABLES used.
86
86
#
87
 
create table t1 ( a int(11) not null auto_increment, primary key(a));
88
 
create table t2 ( a int(11) not null auto_increment, primary key(a));
 
87
create table t1 ( a int not null auto_increment, primary key(a));
 
88
create table t2 ( a int not null auto_increment, primary key(a));
89
89
lock tables t1 write, t2 read;
90
90
delete from t1 using t1,t2 where t1.a=t2.a;
91
91
delete t1 from t1,t2 where t1.a=t2.a;