~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/delete.test

Merged in changes from Andrey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
--disable_warnings
6
6
drop table if exists t1,t2,t3,t11,t12;
7
7
--enable_warnings
8
 
CREATE TABLE t1 (a tinyint, b tinyint);
 
8
CREATE TABLE t1 (a int, b int);
9
9
INSERT INTO t1 VALUES (1,1);
10
10
INSERT LOW_PRIORITY INTO t1 VALUES (1,2);
11
11
INSERT INTO t1 VALUES (1,3);
177
177
CREATE TABLE t1 (
178
178
  `date` date ,
179
179
  `time` time ,
180
 
  `seq` int unsigned NOT NULL auto_increment,
 
180
  `seq` int NOT NULL auto_increment,
181
181
  PRIMARY KEY  (`seq`),
182
182
  KEY `seq` (`seq`),
183
183
  KEY `time` (`time`),