kangpinghuang opened a new issue #771: select lead to core dump URL: https://github.com/apache/incubator-doris/issues/771 **Describe the bug** create table use the following statement: CREATE TABLE `customer` ( `c_custkey` int(11) COMMENT "", `c_name` varchar(25) COMMENT "", `c_address` varchar(40) COMMENT "", `c_city` varchar(10) COMMENT "", `c_nation` varchar(15) COMMENT "", `c_region` varchar(12) COMMENT "", `c_phone` varchar(15) COMMENT "", `c_mktsegment` varchar(10) COMMENT "" ) ENGINE=OLAP AGGREGATE KEY(`c_custkey`, `c_name`, `c_address`, `c_city`, `c_nation`, `c_region`, `c_phone`, `c_mktsegment`) DISTRIBUTED BY HASH(`c_custkey`) BUCKETS 10 PROPERTIES ( "storage_type" = "COLUMN" ); then query: select * from customer where c_custkey>10000 and c_custkey<10100; It will cause core dump: segment_reader.cpp get_block: DCHECK(num_rows_load == _num_rows_in_block || _next_block_id == _end_block) << "num_rows_load must equal with _num_rows_in_block" << ", num_rows_load:" << num_rows_load << ", _num_rows_in_block:" << _num_rows_in_block << ", _next_block_id" << _next_block_id << ", _end_block" << _end_block; num_rows_load = 1 but _num_rows_in_block = 1024
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
