-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Description
Search before asking
- I had searched in the issues and found no similar issues.
Version
latest-master
What's Wrong?
BE crashed
What You Expected?
fix
How to Reproduce?
- create table
CREATE TABLE `tbl` (
`id` int(11) NULL,
`c_array` array<int(11)> NULL
) ENGINE=OLAP
DUPLICATE KEY(`id`)
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`id`) BUCKETS 1
PROPERTIES (
"replication_allocation" = "tag.location.default: 2",
"in_memory" = "false",
"storage_format" = "V2",
"disable_auto_compaction" = "false"
);
-
insert data
insert into tbl values(1, NULL),(2,[12,3]),(3,[]),(4,NULL),(5,NULL); -
delete some rows
delete from tbl where c_array is null; -
select all rows, then BE crashed.
select * from tbl;
Anything Else?
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
No labels