List:Commits« Previous MessageNext Message »
From:U-ROWVWADEjas Date:February 25 2008 11:45pm
Subject:bk commit into 6.0 tree (jas:1.2819)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of . When  does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2008-02-25 17:44:42-05:00, jas@rowvwade. +3 -0
  Turn on database validation and repair through the server.  Also
  fixed an include file name.

  storage/falcon/IndexRootPage.cpp@stripped, 2008-02-25 17:44:33-05:00, jas@rowvwade. +1 -1
    Check "no log" flag before logging index changes.

  storage/falcon/Table.cpp@stripped, 2008-02-25 17:44:34-05:00, jas@rowvwade. +1 -1
    Fix include file name.

  storage/falcon/ha_falcon.cpp@stripped, 2008-02-25 17:44:34-05:00, jas@rowvwade. +2 -3
    Turn on table validation / repair.  Also delete
    seme dead declarations.

diff -Nrup a/storage/falcon/IndexRootPage.cpp b/storage/falcon/IndexRootPage.cpp
--- a/storage/falcon/IndexRootPage.cpp	2007-12-27 00:22:15 -05:00
+++ b/storage/falcon/IndexRootPage.cpp	2008-02-25 17:44:33 -05:00
@@ -901,7 +901,7 @@ void IndexRootPage::setIndexRoot(Dbb* db
 	SectionPage *sections = (SectionPage*) bdb->buffer;
 	sections->pages[slot] = pageNumber;
 	
-	if (!dbb->serialLog->recovering)
+	if (!dbb->serialLog->recovering && !dbb->noLog)
 		dbb->serialLog->logControl->sectionPage.append(dbb, transId,
bdb->pageNumber, pageNumber, slot, INDEX_ROOT, sequence, 0);
 
 	bdb->release(REL_HISTORY);
diff -Nrup a/storage/falcon/Table.cpp b/storage/falcon/Table.cpp
--- a/storage/falcon/Table.cpp	2008-02-25 17:27:05 -05:00
+++ b/storage/falcon/Table.cpp	2008-02-25 17:44:34 -05:00
@@ -56,7 +56,7 @@
 #include "TableSpace.h"
 #include "RecordScavenge.h"
 #include "Section.h"
-#include "Backlog.h"
+#include "BackLog.h"
 
 #ifndef STORAGE_ENGINE
 #include "Trigger.h"
diff -Nrup a/storage/falcon/ha_falcon.cpp b/storage/falcon/ha_falcon.cpp
--- a/storage/falcon/ha_falcon.cpp	2008-02-06 12:38:23 -05:00
+++ b/storage/falcon/ha_falcon.cpp	2008-02-25 17:44:34 -05:00
@@ -44,7 +44,7 @@
 #include "BigInt.h"
 
 //#define NO_OPTIMIZE
-//#define VALIDATE
+#define VALIDATE
 
 #ifndef MIN
 #define MIN(a,b)			((a <= b) ? (a) : (b))
@@ -52,6 +52,7 @@
 #endif
 
 static const uint LOAD_AUTOCOMMIT_RECORDS = 10000;
+//static const uint LOAD_AUTOCOMMIT_RECORDS = 10000000;
 static const char falcon_hton_name[] = "Falcon";
 
 static const char *falcon_extensions[] = {
@@ -78,8 +79,6 @@ ulonglong	falcon_page_cache_size;
 char*		falcon_serial_log_dir;
 char*		falcon_checkpoint_schedule;
 char*		falcon_scavenge_schedule;
-//uint		falcon_debug_mask;
-//uint		falcon_debug_trace;
 FILE		*falcon_log_file;
 
 // Determine the largest memory address, assume 64-bits max
Thread
bk commit into 6.0 tree (jas:1.2819)U-ROWVWADEjas25 Feb