mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / t / replace.test
blobff910bdf5cfadec2e499d8f3e8c1d393b85d6788
2 # Test of REPLACE with MyISAM and HEAP
5 --disable_warnings
6 drop table if exists t1;
7 --enable_warnings
9 CREATE TABLE t1 (
10   gesuchnr int(11) DEFAULT '0' NOT NULL,
11   benutzer_id int(11) DEFAULT '0' NOT NULL,
12   PRIMARY KEY (gesuchnr,benutzer_id)
15 replace into t1 (gesuchnr,benutzer_id) values (2,1);
16 replace into t1 (gesuchnr,benutzer_id) values (1,1);
17 replace into t1 (gesuchnr,benutzer_id) values (1,1);
18 alter table t1 engine=heap;
19 replace into t1 (gesuchnr,benutzer_id) values (1,1);
20 drop table t1;
23 # Test when using replace on a key that has used up it's whole range
26 create table t1 (a tinyint not null auto_increment primary key, b char(20) default "default_value");
27 insert into t1 values (126,"first"),(63, "middle"),(0,"last");
28 --error ER_DUP_ENTRY
29 insert into t1 values (0,"error");
30 --error ER_DUP_ENTRY
31 replace into t1 values (0,"error");
32 replace into t1 values (126,"first updated");
33 replace into t1 values (63,default);
34 select * from t1;
35 drop table t1;
37 # End of 4.1 tests
40 # Bug#19789: REPLACE was allowed for a VIEW with CHECK OPTION enabled.
42 CREATE TABLE t1 (f1 INT);
43 CREATE VIEW v1 AS SELECT f1 FROM t1 WHERE f1 = 0 WITH CHECK OPTION;
44 --error 1369
45 REPLACE INTO v1 (f1) VALUES (1);
46 DROP TABLE t1;
47 DROP VIEW v1;