Details
Description
The patch from MDEV-23264 (bb-10.4-MDEV-23264 b2eb92843c) does not fix it.
--source include/have_sequence.inc
|
|
create or replace table t (a int, b text, unique(b)) engine=MyISAM; |
insert into t values (0,'aa'); |
insert into t (a,b) select 1,'xxx' from seq_1_to_5; |
select * from t; |
|
# Cleanup
|
drop table t; |
10.4 f0107c90 |
insert into t (a,b) select 1,'xxx' from seq_1_to_5; |
select * from t; |
a b
|
0 aa
|
1 xxx
|
1 xxx
|
1 xxx
|
1 xxx
|
1 xxx
|
Attachments
Issue Links
- is caused by
-
MDEV-371 Unique indexes for blobs
- Closed
- relates to
-
MDEV-23264 Unique blobs allow duplicate values upon UPDATE
- Closed