yiguolei commented on code in PR #68301:
URL: https://github.com/apache/doris/pull/68301#discussion_r4068089489
##########
be/src/core/column/column_varbinary.cpp:
##########
@@ -31,6 +31,26 @@
#include "exec/sort/sort_block.h"
namespace doris {
+
+void ColumnVarbinary::insert_many_continuous_binary_data(const char* data,
const uint32_t* offsets,
+ size_t num) {
+ reserve(size() + num);
Review Comment:
这个reserve 是错的。 不是 +num,应该是计算一下offsets【num】 - 0 ?
--
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]