1#
2# Test of REPLACE with MyISAM and HEAP
3#
4
5--disable_warnings
6drop table if exists t1;
7--enable_warnings
8
9CREATE 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)
13);
14
15replace into t1 (gesuchnr,benutzer_id) values (2,1);
16replace into t1 (gesuchnr,benutzer_id) values (1,1);
17replace into t1 (gesuchnr,benutzer_id) values (1,1);
18alter table t1 engine=heap;
19replace into t1 (gesuchnr,benutzer_id) values (1,1);
20drop table t1;
21
22#
23# Test when using replace on a key that has used up it's whole range
24#
25
26create table t1 (a tinyint not null auto_increment primary key, b char(20) default "default_value");
27insert into t1 values (126,"first"),(63, "middle"),(0,"last");
28--error HA_ERR_AUTOINC_ERANGE
29insert into t1 values (0,"error");
30--error HA_ERR_AUTOINC_ERANGE
31replace into t1 values (0,"error");
32replace into t1 values (126,"first updated");
33replace into t1 values (63,default);
34select * from t1;
35drop table t1;
36
37# End of 4.1 tests
38
39#
40# Bug#19789: REPLACE was allowed for a VIEW with CHECK OPTION enabled.
41#
42CREATE TABLE t1 (f1 INT);
43CREATE VIEW v1 AS SELECT f1 FROM t1 WHERE f1 = 0 WITH CHECK OPTION;
44--error 1369
45REPLACE INTO v1 (f1) VALUES (1);
46DROP TABLE t1;
47DROP VIEW v1;
48