yiguolei commented on code in PR #59009:
URL: https://github.com/apache/doris/pull/59009#discussion_r2621606236
##########
be/src/olap/rowset/segment_v2/column_reader.cpp:
##########
@@ -1763,6 +1779,27 @@ Status FileColumnIterator::next_batch(size_t* n,
vectorized::MutableColumnPtr& d
return Status::OK();
}
+ if (const auto* const_field = _reader->get_const_value_field()) {
+ size_t size = *n;
+ dst->reserve(dst->size() + size);
+ if (const_field->is_null()) {
Review Comment:
const field 是null,为什么就插入default?感觉这里会有混乱
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]