1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fix insert delated + query cache.

Fix pthread_mutex_trylock on HPUX (needed for query cache).
This commit is contained in:
monty@hundin.mysql.fi
2001-12-20 06:14:11 +02:00
parent b1291364cb
commit 0eb46e4256
7 changed files with 80 additions and 9 deletions

View File

@ -1227,6 +1227,7 @@ bool delayed_insert::handle_inserts(void)
sql_print_error("%s",thd.net.last_error);
goto err;
}
query_cache.invalidate(table);
if (thr_reschedule_write_lock(*thd.lock->locks))
{
/* This should never happen */
@ -1251,6 +1252,7 @@ bool delayed_insert::handle_inserts(void)
sql_print_error("%s",thd.net.last_error);
goto err;
}
query_cache.invalidate(table);
pthread_mutex_lock(&mutex);
DBUG_RETURN(0);