~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.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:
1
1
drop table if exists t1,t2,t3,t11,t12;
2
 
CREATE TABLE t1 (a int, b int);
 
2
CREATE TABLE t1 (a tinyint, b tinyint);
3
3
INSERT INTO t1 VALUES (1,1);
4
4
INSERT LOW_PRIORITY INTO t1 VALUES (1,2);
5
5
INSERT INTO t1 VALUES (1,3);
185
185
CREATE TABLE t1 (
186
186
`date` date ,
187
187
`time` time ,
188
 
`seq` int NOT NULL auto_increment,
 
188
`seq` int unsigned NOT NULL auto_increment,
189
189
PRIMARY KEY  (`seq`),
190
190
KEY `seq` (`seq`),
191
191
KEY `time` (`time`),