mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
cleanup: change Item::walk() to take void* not uchar*
and remove all related casts to uchar* also remove a couple of unused methods
This commit is contained in:
@ -281,8 +281,7 @@ void JOIN_CACHE::collect_info_on_key_args()
|
||||
Item *ref_item= ref->items[i];
|
||||
if (!(tab->table->map & ref_item->used_tables()))
|
||||
continue;
|
||||
ref_item->walk(&Item::add_field_to_set_processor, 1,
|
||||
(uchar *) tab->table);
|
||||
ref_item->walk(&Item::add_field_to_set_processor, 1, tab->table);
|
||||
}
|
||||
if ((key_args= bitmap_bits_set(&tab->table->tmp_set)))
|
||||
{
|
||||
|
Reference in New Issue
Block a user