List:Commits« Previous MessageNext Message »
From:Jim Starkey Date:May 30 2007 3:14pm
Subject:bk commit into 6.0-falcon tree (jas:1.2524)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0-falcon repository of jas. When jas 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, 2007-05-30 11:14:00-04:00, jas@stripped +2 -0
  Disable page precedence

  storage/falcon/Cache.cpp@stripped, 2007-05-30 11:13:56-04:00, jas@stripped +4 -0
    Disable page precedence

  storage/falcon/Dbb.cpp@stripped, 2007-05-30 11:13:56-04:00, jas@stripped +0 -1
    Eliminate bogus include file generated by msvs.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	jas
# Host:	fluffy.netfrastructure.com
# Root:	/home/mysql/mysql-5.1-falcon

--- 1.30/storage/falcon/Cache.cpp	2007-05-30 11:14:06 -04:00
+++ 1.31/storage/falcon/Cache.cpp	2007-05-30 11:14:06 -04:00
@@ -544,6 +544,8 @@
 
 void Cache::validateUnique(Bdb *target)
 {
+	return;
+
 	int	slot = target->pageNumber % hashSize;
 
 	for (Bdb *bdb = hashTable [slot]; bdb; bdb = bdb->hash)
@@ -563,6 +565,7 @@
 		if (precedence->higher->pageNumber == highPageNumber)
 			return;
 	
+	/***
 	if (count == 100)
 		{
 		LogLock logLock;
@@ -572,6 +575,7 @@
 		for (precedence = lower->higher; precedence; precedence = precedence->nextHigh, ++count)
 			dbb->printPage(precedence->higher->pageNumber);
 		}
+	***/
 
 	for (higher = hashTable [slot]; higher; higher = higher->hash)
 		if (higher->pageNumber == highPageNumber && higher->dbb == lower->dbb)

--- 1.64/storage/falcon/Dbb.cpp	2007-05-30 11:14:06 -04:00
+++ 1.65/storage/falcon/Dbb.cpp	2007-05-30 11:14:06 -04:00
@@ -52,7 +52,6 @@
 #include "IndexKey.h"
 #include "IndexNode.h"
 #include "DatabaseClone.h"
-#include ".\dbb.h"
 
 //#define STOP_RECORD	123
 static const int SECTION_HASH_SIZE	= 997;
Thread
bk commit into 6.0-falcon tree (jas:1.2524)Jim Starkey30 May