[feature-wip][array-type] Refactor type info for nested array. (#8279)

This commit is contained in:
Adonis Ling
2022-03-02 14:20:39 +08:00
committed by GitHub
parent b241bc4e9d
commit b40e9144cb
35 changed files with 138 additions and 122 deletions

View File

@ -1002,7 +1002,7 @@ OLAPStatus PushBrokerReader::fill_field_row(RowCursorCell* dst, const char* src,
if (src_null) {
break;
}
const TypeInfo* type_info = get_type_info(type);
auto type_info = get_type_info(type);
type_info->deep_copy(dst->mutable_cell_ptr(), src, mem_pool);
break;
}