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-08-27 14:22:22-04:00, jas@stripped +1 -0
Fix obscure bug in SRLDeleteIndex where wrong table space if
was being used to disable index.
storage/falcon/SRLDeleteIndex.cpp@stripped, 2007-08-27 14:22:19-04:00, jas@stripped +2 -2
Fix incorrect reference to local "tableSpaceId" (should have
referenced "dbb->tableSpaceId") when setting index inactive.
# 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.13/storage/falcon/SRLDeleteIndex.cpp 2007-08-27 14:22:28 -04:00
+++ 1.14/storage/falcon/SRLDeleteIndex.cpp 2007-08-27 14:22:28 -04:00
@@ -42,7 +42,7 @@
}
-void SRLDeleteIndex::append(Dbb *dbb, TransId transId, int32 id, int idxVersion)
+void SRLDeleteIndex::append(Dbb *dbb, TransId transId, int id, int idxVersion)
{
Sync syncIndexes(&log->syncIndexes, "SRLDeleteIndex::append");
syncIndexes.lock(Exclusive);
@@ -50,7 +50,7 @@
START_RECORD(srlDeleteIndex, "SRLCreateIndex::append");
putInt(dbb->tableSpaceId);
log->getTransaction(transId);
- log->setIndexInactive(id, tableSpaceId);
+ log->setIndexInactive(id, dbb->tableSpaceId);
putInt(transId);
putInt(id);
putInt(idxVersion);
| Thread |
|---|
| • bk commit into 6.0-falcon tree (jas:1.2716) | Jim Starkey | 27 Aug |