1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Don't use symlinks when using HAVE_purify.

Fix compile problem in sql_cache.cc
This commit is contained in:
monty@hundin.mysql.fi
2001-12-17 04:16:10 +02:00
parent 4dbd9e061c
commit b3fb88dc72
2 changed files with 9 additions and 0 deletions

View File

@@ -2160,7 +2160,9 @@ uint Query_cache::find_bin(ulong size)
}
uint bin = steps[left].idx -
(uint)((size - steps[left].size)/steps[left].increment);
#ifndef DBUG_OFF
bins_dump();
#endif
DBUG_PRINT("qcache", ("bin %u step %u, size %lu step size %lu",
bin, left, size, steps[left].size));
DBUG_RETURN(bin);