Commit 1e0f2eb6 authored by Marko Mäkelä's avatar Marko Mäkelä

Fix complation error

parent 5400ff3a
......@@ -340,7 +340,7 @@ rec_init_offsets_comp_ordinary(
ordinary:
lens = --nulls - index->n_core_null_bytes;
ut_d(n_null = std::min(index->n_core_null_bytes * 8U,
ut_d(n_null = std::min<uint>(index->n_core_null_bytes * 8U,
index->n_nullable));
break;
case REC_LEAF_INSTANT:
......@@ -1593,7 +1593,7 @@ rec_convert_dtuple_to_rec_comp(
rec_set_status(rec, status);
ut_ad(n_fields
== dict_index_get_n_unique_in_tree_nonleaf(index) + 1);
ut_d(n_null = std::min(index->n_core_null_bytes * 8U,
ut_d(n_null = std::min<uint>(index->n_core_null_bytes * 8U,
index->n_nullable));
n_node_ptr_field = n_fields - 1;
lens = nulls - index->n_core_null_bytes;
......
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