Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
10.6(EOL), 10.11, 11.4, 11.8, 12.3
-
Can result in hang or crash
-
When running a DELETE on a table which is using the CSV storage engine, the server can crash
Description
--source include/have_sequence.inc
|
--source include/have_csv.inc
|
 |
create table t1 (id int not null, pad char(10) not null) engine=csv; |
insert t1 select seq,'AAAAAAAAAA' from seq_1_to_2048; |
select count(*) from t1; |
delete from t1 where id % 2 = 0; |
select 1; |
drop table t1; |