HappenLee commented on code in PR #11084: URL: https://github.com/apache/doris/pull/11084#discussion_r927262536
########## be/src/vec/columns/column_nullable.cpp: ########## @@ -152,6 +166,17 @@ void ColumnNullable::serialize_vec(std::vector<StringRef>& keys, size_t num_rows get_nested_column().serialize_vec_with_null_map(keys, num_rows, arr.data(), max_row_byte_size); } +void ColumnNullable::deserialize_vec(std::vector<StringRef>& keys, const size_t num_rows) { + const auto& arr = get_null_map_data(); + for (size_t i = 0; i != num_rows; ++i) { Review Comment: this code seems can SIMD. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org