mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
Merge a change from MySQL AB:
ChangeSet@1.2560 2007-09-21 10:15:16+02:00 gkodinov@local ha_innodb.cc: fixed type conversion warnings revealed by bug 30639
This commit is contained in:
parent
352a5858ed
commit
7815285f3e
1 changed files with 1 additions and 1 deletions
|
@ -5774,7 +5774,7 @@ ha_innobase::info(
|
||||||
|
|
||||||
table->key_info[i].rec_per_key[j]=
|
table->key_info[i].rec_per_key[j]=
|
||||||
rec_per_key >= ~(ulong) 0 ? ~(ulong) 0 :
|
rec_per_key >= ~(ulong) 0 ? ~(ulong) 0 :
|
||||||
rec_per_key;
|
(ulong) rec_per_key;
|
||||||
}
|
}
|
||||||
|
|
||||||
index = dict_table_get_next_index_noninline(index);
|
index = dict_table_get_next_index_noninline(index);
|
||||||
|
|
Loading…
Add table
Reference in a new issue