1
0
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:
monty@hundin.mysql.fi
2001-12-19 15:45:04 +02:00
parent 0048a58f03
commit 1a4ac20bf9
6 changed files with 65 additions and 54 deletions

View File

@@ -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)