~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock.result

  • Committer: Mats Kindahl
  • Date: 2008-08-07 06:24:22 UTC
  • mfrom: (265 drizzle)
  • mto: (264.1.19 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: mats@mysql.com-20080807062422-20kyv6ssp4grfm0s
Manual merge of lp:drizzle into ~mkindahl/remove-mem-casts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
update t1 set id=1 where id=-1;
21
21
drop table t1,t2;
22
22
CREATE TABLE t1 (
23
 
index1 int default NULL,
24
 
nr int default NULL,
 
23
index1 smallint default NULL,
 
24
nr smallint default NULL,
25
25
KEY index1(index1)
26
26
) ENGINE=MyISAM;
27
27
CREATE TABLE t2 (
28
 
nr int default NULL,
 
28
nr smallint default NULL,
29
29
name varchar(20) default NULL
30
30
) ENGINE=MyISAM;
31
31
INSERT INTO t2 VALUES (1,'item1');