~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Monty Taylor
  • Date: 2008-08-04 19:37:18 UTC
  • mto: (261.2.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: monty@inaugust.com-20080804193718-f0rz13uli4429ozb
Changed gettext_noop() to N_()

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`),