Commit 8c3eb6c2 authored by tomas@whalegate.ndb.mysql.com's avatar tomas@whalegate.ndb.mysql.com

Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb

into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-single-user
parents d5303f4a b46465f3
...@@ -305,6 +305,11 @@ Dblqh::Dblqh(Block_context& ctx): ...@@ -305,6 +305,11 @@ Dblqh::Dblqh(Block_context& ctx):
initData(); initData();
/* maximum number of log file operations */
clfoFileSize = clogPageFileSize;
if (clfoFileSize < ZLFO_MIN_FILE_SIZE)
clfoFileSize = ZLFO_MIN_FILE_SIZE;
#ifdef VM_TRACE #ifdef VM_TRACE
{ {
void* tmp[] = { void* tmp[] = {
......
...@@ -8006,11 +8006,6 @@ void Dblqh::continueScanNextReqLab(Signal* signal) ...@@ -8006,11 +8006,6 @@ void Dblqh::continueScanNextReqLab(Signal* signal)
return; return;
} }
/* maximum number of log file operations */
clfoFileSize = clogPageFileSize;
if (clfoFileSize < ZLFO_MIN_FILE_SIZE)
clfoFileSize = ZLFO_MIN_FILE_SIZE;
// Update timer on tcConnectRecord // Update timer on tcConnectRecord
tcConnectptr.p->tcTimer = cLqhTimeOutCount; tcConnectptr.p->tcTimer = cLqhTimeOutCount;
init_acc_ptr_list(scanptr.p); init_acc_ptr_list(scanptr.p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment