mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fixed bug in FLUSH QUERY CACHE
Changed 'send_file_to_server' to use less stack (Fixed replication problem on OSF1).
This commit is contained in:
@@ -2369,8 +2369,9 @@ void Query_cache::pack_cache()
|
||||
{
|
||||
do
|
||||
{
|
||||
Query_cache_block *next=block->pnext;
|
||||
ok = move_by_type(&border, &before, &gap, block);
|
||||
block = block->pnext;
|
||||
block = next;
|
||||
} while (ok && block != first_block);
|
||||
|
||||
if (border != 0)
|
||||
|
||||
Reference in New Issue
Block a user