mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
062f8eb37d
the information about index algorithm was stored in two places inconsistently split between both. BTREE index could have key->algorithm == HA_KEY_ALG_BTREE, if the user explicitly specified USING BTREE or HA_KEY_ALG_UNDEF, if not. RTREE index had key->algorithm == HA_KEY_ALG_RTREE and always had key->flags & HA_SPATIAL FULLTEXT index had key->algorithm == HA_KEY_ALG_FULLTEXT and always had key->flags & HA_FULLTEXT HASH index had key->algorithm == HA_KEY_ALG_HASH or HA_KEY_ALG_UNDEF long unique index always had key->algorithm == HA_KEY_ALG_LONG_HASH In this commit: All indexes except BTREE and HASH always have key->algorithm set, HA_SPATIAL and HA_FULLTEXT flags are not used anymore (except for storage to keep frms backward compatible). As a side effect ALTER TABLE now detects FULLTEXT index renames correctly
139 lines
3.8 KiB
Text
139 lines
3.8 KiB
Text
create table t1(a blob unique) engine= InnoDB;
|
|
insert into t1 values('RUC');
|
|
insert into t1 values ('RUC');
|
|
ERROR 23000: Duplicate entry 'RUC' for key 'a'
|
|
show keys from t1;
|
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment Ignored
|
|
t1 0 a 1 a A 1 NULL NULL YES HASH NO
|
|
drop table t1;
|
|
create table t1 (a blob unique , c int unique) engine=innodb;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` blob DEFAULT NULL,
|
|
`c` int(11) DEFAULT NULL,
|
|
UNIQUE KEY `c` (`c`),
|
|
UNIQUE KEY `a` (`a`) USING HASH
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
|
|
drop table t1;
|
|
#test for concurrent insert of long unique in innodb
|
|
create table t1(a blob unique) engine= InnoDB;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` blob DEFAULT NULL,
|
|
UNIQUE KEY `a` (`a`) USING HASH
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
|
|
connect 'con1', localhost, root,,;
|
|
connect 'con2', localhost, root,,;
|
|
connection con1;
|
|
set innodb_lock_wait_timeout= 2;
|
|
set transaction isolation level READ UNCOMMITTED;
|
|
start transaction;
|
|
insert into t1 values('RUC');
|
|
connection con2;
|
|
set innodb_lock_wait_timeout= 2;
|
|
set transaction isolation level READ UNCOMMITTED;
|
|
start transaction;
|
|
insert into t1 values ('RUC');
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
connection con1;
|
|
commit;
|
|
set transaction isolation level READ COMMITTED;
|
|
start transaction;
|
|
insert into t1 values('RC');
|
|
connection con2;
|
|
commit;
|
|
set transaction isolation level READ COMMITTED;
|
|
start transaction;
|
|
insert into t1 values ('RC');
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
commit;
|
|
connection con1;
|
|
commit;
|
|
set transaction isolation level REPEATABLE READ;
|
|
start transaction;
|
|
insert into t1 values('RR');
|
|
connection con2;
|
|
commit;
|
|
set transaction isolation level REPEATABLE READ;
|
|
start transaction;
|
|
insert into t1 values ('RR');
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
connection con1;
|
|
commit;
|
|
set transaction isolation level SERIALIZABLE;
|
|
start transaction;
|
|
insert into t1 values('S');
|
|
connection con2;
|
|
commit;
|
|
set transaction isolation level SERIALIZABLE;
|
|
start transaction;
|
|
insert into t1 values ('S');
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
commit;
|
|
connection con1;
|
|
commit;
|
|
select * from t1;
|
|
a
|
|
RUC
|
|
RC
|
|
RR
|
|
S
|
|
drop table t1;
|
|
create table t1(a blob unique) engine=Innodb;
|
|
connection con1;
|
|
set transaction isolation level READ UNCOMMITTED;
|
|
start transaction;
|
|
insert into t1 values('RUC');
|
|
connection con2;
|
|
set transaction isolation level READ UNCOMMITTED;
|
|
start transaction;
|
|
insert into t1 values ('RUC');;
|
|
connection con1;
|
|
rollback;
|
|
connection con2;
|
|
commit;
|
|
connection con1;
|
|
set transaction isolation level READ COMMITTED;
|
|
start transaction;
|
|
insert into t1 values('RC');
|
|
connection con2;
|
|
set transaction isolation level READ COMMITTED;
|
|
start transaction;
|
|
insert into t1 values ('RC');;
|
|
connection con1;
|
|
rollback;
|
|
connection con2;
|
|
commit;
|
|
connection con1;
|
|
set transaction isolation level REPEATABLE READ;
|
|
start transaction;
|
|
insert into t1 values('RR');
|
|
connection con2;
|
|
set transaction isolation level REPEATABLE READ;
|
|
start transaction;
|
|
insert into t1 values ('RR');;
|
|
connection con1;
|
|
rollback;
|
|
connection con2;
|
|
commit;
|
|
connection con1;
|
|
set transaction isolation level SERIALIZABLE;
|
|
start transaction;
|
|
insert into t1 values('S');
|
|
connection con2;
|
|
set transaction isolation level SERIALIZABLE;
|
|
start transaction;
|
|
insert into t1 values ('S');;
|
|
connection con1;
|
|
rollback;
|
|
connection con2;
|
|
commit;
|
|
connection default;
|
|
drop table t1;
|
|
disconnect con1;
|
|
disconnect con2;
|
|
# MDEV-20131 Assertion `!pk->has_virtual()' failed
|
|
create table t1 (a text, primary key(a(1871))) engine=innodb;
|
|
ERROR 42000: Specified key was too long; max key length is 1536 bytes
|