mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/4648.test
2013-09-09 13:59:38 +02:00

30 lines
651 B
Text

--source include/have_tokudb.inc
#
# Record inconsistency.
#
#
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
create table t1 (
c1 int not null auto_increment primary key, c2 varchar(128) not null , c3 int, unique index unique_c2 (c2)
) engine=tokudb collate=latin1_general_ci;
insert into t1 (c1,c2) values (1,'THIS IS A TEST');
select c2 from t1;
select * from t1;
update t1 set c2 = 'this is a test' where c1 = 1;
select c2 from t1;
select * from t1;
insert into t1 (c1,c2) values(2,'ttt');
--error ER_DUP_ENTRY
update t1 set c2 = 'ttt' where c1 = 1;
# Final cleanup.
DROP TABLE t1;