Commit 040ae4c5 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-22924 fixup: Replace C++11 auto

parent d44c0f46
......@@ -3323,7 +3323,7 @@ class Row_sel_get_clust_rec_for_mysql
ut_ad(vers_offs == rec_get_offsets(cached_old_vers, index, vers_offs, true,
index->db_trx_id(), &heap));
ut_ad(!heap);
for (auto n= index->db_trx_id(); n--; )
for (unsigned n= index->db_trx_id(); n--; )
{
const dict_col_t *col= dict_index_get_nth_col(index, n);
ulint len1, len2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment