~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

Merged build changes from Antony.

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 tinyint(3), b tinyint(5));
 
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);
47
47
delete from t1 where a=27;
48
48
drop table t1;
49
49
CREATE TABLE `t1` (
50
 
`i` int(10) NOT NULL default '0',
51
 
`i2` int(10) NOT NULL default '0',
 
50
`i` int NOT NULL default '0',
 
51
`i2` int NOT NULL default '0',
52
52
PRIMARY KEY  (`i`)
53
53
);
54
54
DELETE FROM t1 USING t1 WHERE post='1';
185
185
CREATE TABLE t1 (
186
186
`date` date ,
187
187
`time` time ,
188
 
`seq` int(10) unsigned 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`),