Prevent erroneous copying of groups data, update max load to properly propagate

This commit is contained in:
Christian Mazakas
2023-08-16 10:22:08 -07:00
parent a06498f5ce
commit c5f64ed1d3

View File

@ -1870,9 +1870,10 @@ private:
void fast_copy_elements_from(const table_core& x)
{
if(arrays.elements){
if(arrays.elements&&x.arrays.elements){
copy_elements_array_from(x);
copy_groups_array_from(x);
size_ctrl.ml=std::size_t(x.size_ctrl.ml);
size_ctrl.size=std::size_t(x.size_ctrl.size);
}
}