summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVadim Tkachenko <vadim@percona.com>2009-04-07 13:43:03 -0700
committerVadim Tkachenko <vadim@percona.com>2009-04-07 13:43:03 -0700
commita992bf5adc36e458251b58b0b2c09a477c1bff6e (patch)
tree1fc72b993bf3e6e44aea24e630c437720e6e1a74 /include
parent107072563d771422c9bbb9aeeedce8ae19c5b838 (diff)
downloadmariadb-git-a992bf5adc36e458251b58b0b2c09a477c1bff6e.tar.gz
added innodb_overwrite_relay_log_info.patch
Diffstat (limited to 'include')
-rw-r--r--include/buf0buf.ic4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/buf0buf.ic b/include/buf0buf.ic
index c56c0ac62f2..3143ddd2f7c 100644
--- a/include/buf0buf.ic
+++ b/include/buf0buf.ic
@@ -291,7 +291,7 @@ buf_page_get_LRU_position(
const buf_page_t* bpage) /* in: control block */
{
ut_ad(buf_page_in_file(bpage));
- ut_ad(buf_pool_mutex_own());
+ //ut_ad(buf_pool_mutex_own()); /* This is used in optimistic */
return(bpage->LRU_position);
}
@@ -461,7 +461,7 @@ buf_page_is_old(
const buf_page_t* bpage) /* in: control block */
{
ut_ad(buf_page_in_file(bpage));
- ut_ad(buf_pool_mutex_own());
+ //ut_ad(buf_pool_mutex_own()); /* This is used in optimistic */
return(bpage->old);
}