~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/delete.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,t3,t11,t12;
7
7
--enable_warnings
8
 
CREATE TABLE t1 (a tinyint(3), b tinyint(5));
 
8
CREATE TABLE t1 (a tinyint, b tinyint);
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);
61
61
drop table t1;
62
62
 
63
63
CREATE TABLE `t1` (
64
 
  `i` int(10) NOT NULL default '0',
65
 
  `i2` int(10) NOT NULL default '0',
 
64
  `i` int NOT NULL default '0',
 
65
  `i2` int NOT NULL default '0',
66
66
  PRIMARY KEY  (`i`)
67
67
);
68
68
-- error 1054
177
177
CREATE TABLE t1 (
178
178
  `date` date ,
179
179
  `time` time ,
180
 
  `seq` int(10) unsigned NOT NULL auto_increment,
 
180
  `seq` int unsigned NOT NULL auto_increment,
181
181
  PRIMARY KEY  (`seq`),
182
182
  KEY `seq` (`seq`),
183
183
  KEY `time` (`time`),