mirror of
https://github.com/MariaDB/server.git
synced 2025-08-09 22:24:09 +03:00
Fix VC++ compiler error
This commit is contained in:
@@ -1071,7 +1071,7 @@ void Query_cache::invalidate(CHANGED_TABLE_LIST *tables_used)
|
|||||||
DUMP(this);
|
DUMP(this);
|
||||||
for ( ; tables_used; tables_used=tables_used->next)
|
for ( ; tables_used; tables_used=tables_used->next)
|
||||||
{
|
{
|
||||||
invalidate_table(tables_used->key, tables_used->key_length);
|
invalidate_table((uchar *) tables_used->key, tables_used->key_length);
|
||||||
DBUG_PRINT("qcache", (" db %s, table %s", tables_used->key,
|
DBUG_PRINT("qcache", (" db %s, table %s", tables_used->key,
|
||||||
tables_used->table_name));
|
tables_used->table_name));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user