1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
--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, index key_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;
drop table if exists t1;
create table t1 (
c1 int not null auto_increment primary key, c2 varchar(128) not null , index key_c2 (c2)
) engine=tokudb collate=latin1_general_cs;
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;
drop table t1;
CREATE TABLE t1 (a char(2) not null primary key, b varchar(20) not null, key (b))engine=TokuDB;
INSERT INTO t1 values ('AB','MySQLAB'),('JA','Sun Microsystems'),('MS','Microsoft'),('IB','IBM- Inc.'),('GO','Google Inc.');
select * from t1;
update t1 set t1.a=LCASE(t1.a);
select * from t1;
drop table t1;
create table t1 (a char(2) not null, b varchar(20) not null);
INSERT INTO t1 values ('AB','MySQLAB'),('JA','Sun Microsystems'),('MS','Microsoft'),('IB','IBM- Inc.'),('GO','Google Inc.');
select * from t1;
update t1 set t1.a=LCASE(t1.a);
select * from t1;
# Final cleanup.
DROP TABLE t1;
|