mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
MDEV-19486: Fix -Wsign-compare
This commit is contained in:
parent
48a662dae5
commit
b77460508e
1 changed files with 1 additions and 1 deletions
|
@ -3486,7 +3486,7 @@ void upd_node_t::make_versioned_helper(const trx_t* trx, ulint idx)
|
|||
dict_index_t* clust_index = dict_table_get_first_index(table);
|
||||
|
||||
/* row_create_update_node_for_mysql() pre-allocated this much */
|
||||
ut_ad(update->n_fields < table->n_cols + table->n_v_cols);
|
||||
ut_ad(update->n_fields < ulint(table->n_cols + table->n_v_cols));
|
||||
|
||||
update->n_fields++;
|
||||
upd_field_t* ufield = upd_get_nth_field(update, update->n_fields - 1);
|
||||
|
|
Loading…
Add table
Reference in a new issue