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, 2007-12-13 16:05:02-05:00, jas@rowvwade. +1 -0
Be a little more tolerant of wrong page type for legacy
Netfrastructure sequence pages.
storage/falcon/Dbb.cpp@stripped, 2007-12-13 16:04:55-05:00, jas@rowvwade. +8 -0
Be a little more tolerant of wrong page type for legacy
Netfrastructure sequence pages.
diff -Nrup a/storage/falcon/Dbb.cpp b/storage/falcon/Dbb.cpp
--- a/storage/falcon/Dbb.cpp 2007-12-05 12:01:18 -05:00
+++ b/storage/falcon/Dbb.cpp 2007-12-13 16:04:55 -05:00
@@ -748,7 +748,11 @@ Bdb* Dbb::getSequencePage(int sequenceId
if (sequencePageNumber)
{
+#ifdef STORAGE_ENGINE
bdb = fetchPage(sequencePageNumber, PAGE_sequences, lockType);
+#else
+ bdb = fetchPage(sequencePageNumber, PAGE_any, lockType);
+#endif
BDB_HISTORY(bdb);
}
else
@@ -759,7 +763,11 @@ Bdb* Dbb::getSequencePage(int sequenceId
if (sequencePageNumber)
{
+#ifdef STORAGE_ENGINE
bdb = fetchPage(sequencePageNumber, PAGE_sequences, lockType);
+#else
+ bdb = fetchPage(sequencePageNumber, PAGE_any, lockType);
+#endif
BDB_HISTORY(bdb);
}
else
| Thread |
|---|
| • bk commit into 6.0 tree (jas:1.2736) | U-ROWVWADEjas | 13 Dec |