~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock.result

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

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');