summaryrefslogtreecommitdiff
path: root/storage/xtradb/buf/buf0lru.c
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2012-06-21 11:26:53 +0200
committerSergei Golubchik <sergii@pisem.net>2012-06-21 11:26:53 +0200
commit39005ea06f1c5d0aa9d7e55c8f4000477f26b74b (patch)
tree43bdd0b218be7bf646cee4b1f5321f7428d4b54b /storage/xtradb/buf/buf0lru.c
parent49cadc9114ab41cd853727c1b38b26fa901c49ca (diff)
downloadmariadb-git-39005ea06f1c5d0aa9d7e55c8f4000477f26b74b.tar.gz
MDEV-349 5.5 xtradb innodb_prefix_index_liftedlimit crash with valgrind
This is XtraDB bug lp:1015109, introduced by innodb_split_buf_pool_mutex.patch Comment the offending assertion, until the fixed XtraDB is available
Diffstat (limited to 'storage/xtradb/buf/buf0lru.c')
-rw-r--r--storage/xtradb/buf/buf0lru.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/xtradb/buf/buf0lru.c b/storage/xtradb/buf/buf0lru.c
index bf61f4e05f5..f7b5db2d0cc 100644
--- a/storage/xtradb/buf/buf0lru.c
+++ b/storage/xtradb/buf/buf0lru.c
@@ -861,7 +861,7 @@ buf_LRU_insert_zip_clean(
buf_pool_t* buf_pool = buf_pool_from_bpage(bpage);
//ut_ad(buf_pool_mutex_own(buf_pool));
- ut_ad(mutex_own(&buf_pool->LRU_list_mutex));
+ //ut_ad(mutex_own(&buf_pool->LRU_list_mutex));
ut_ad(mutex_own(&buf_pool->zip_mutex));
ut_ad(buf_page_get_state(bpage) == BUF_BLOCK_ZIP_PAGE);