~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/replace.test

  • Committer: Brian Aker
  • Date: 2008-10-18 15:43:20 UTC
  • mto: (492.3.20 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081018154320-jc9jyij3mdf08abp
Updating tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
--enable_warnings
8
8
 
9
9
CREATE TABLE t1 (
10
 
  gesuchnr int(11) DEFAULT '0' NOT NULL,
11
 
  benutzer_id int(11) DEFAULT '0' NOT NULL,
 
10
  gesuchnr int DEFAULT '0' NOT NULL,
 
11
  benutzer_id int DEFAULT '0' NOT NULL,
12
12
  PRIMARY KEY (gesuchnr,benutzer_id)
13
13
);
14
14
 
31
31
#replace into t1 values (1,"error");
32
32
replace into t1 values (126,"first updated");
33
33
replace into t1 values (63,default);
34
 
select * from t1;
 
34
select * from t1 order by a;
35
35
drop table t1;
36
36
 
37
37
# End of 4.1 tests