1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fix typo (clang issued warning that =+ was used where += was intended)

This commit is contained in:
Vladislav Vaintroub
2013-03-06 22:22:24 +01:00
parent 108a0a1823
commit 888db0ec09

View File

@ -774,7 +774,7 @@ ulong JOIN_CACHE::get_min_join_buffer_size()
tab= next_linear_tab(join, tab, WITHOUT_BUSH_ROOTS))
{
len+= tab->get_max_used_fieldlength();
len_last=+ tab->get_used_fieldlength();
len_last+= tab->get_used_fieldlength();
}
size_t len_addon= get_record_max_affix_length() +
get_max_key_addon_space_per_record();