mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
remove the rest of isam/merge references
fix a race condition in TC_LOG_BINLOG::unlog
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
-- source include/have_isam.inc
|
||||
|
||||
#
|
||||
# Test of REPLACE with ISAM and MyISAM and HEAP
|
||||
# Test of REPLACE with MyISAM and HEAP
|
||||
#
|
||||
|
||||
--disable_warnings
|
||||
@@ -12,13 +10,11 @@ CREATE TABLE t1 (
|
||||
gesuchnr int(11) DEFAULT '0' NOT NULL,
|
||||
benutzer_id int(11) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (gesuchnr,benutzer_id)
|
||||
) engine=ISAM;
|
||||
);
|
||||
|
||||
replace into t1 (gesuchnr,benutzer_id) values (2,1);
|
||||
replace into t1 (gesuchnr,benutzer_id) values (1,1);
|
||||
replace into t1 (gesuchnr,benutzer_id) values (1,1);
|
||||
alter table t1 engine=myisam;
|
||||
replace into t1 (gesuchnr,benutzer_id) values (1,1);
|
||||
alter table t1 engine=heap;
|
||||
replace into t1 (gesuchnr,benutzer_id) values (1,1);
|
||||
drop table t1;
|
||||
|
||||
Reference in New Issue
Block a user