Below is the list of changes that have just been committed into a local
5.0 repository of jonas. When jonas 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
1.1984 06/03/13 14:38:12 jonas@stripped +1 -0
bug#14028 -
ndb crash if trigger record get to big, fix incorrect max size of trigger record
ndb/src/kernel/blocks/backup/Backup.cpp
1.27 06/03/13 14:38:10 jonas@stripped +2 -3
Increase size of max trigger record
# 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: jonas
# Host: perch.ndb.mysql.com
# Root: /home/jonas/src/50-work
--- 1.26/ndb/src/kernel/blocks/backup/Backup.cpp 2005-12-02 17:32:56 +01:00
+++ 1.27/ndb/src/kernel/blocks/backup/Backup.cpp 2006-03-13 14:38:10 +01:00
@@ -2424,8 +2424,7 @@
};
const Uint32 maxInsert[] = {
2048, // Temporarily to solve TR515
- //25, // 100 bytes
- 2048, // 4k
+ 4096, // 4k
16*3000, // Max 16 tuples
};
Uint32 minWrite[] = {
@@ -3231,7 +3230,7 @@
trigPtr.p->tab_ptr_i = tabPtr.i;
trigPtr.p->logEntry = 0;
trigPtr.p->event = j;
- trigPtr.p->maxRecordSize = 2048;
+ trigPtr.p->maxRecordSize = 4096;
trigPtr.p->operation =
&ptr.p->files.getPtr(ptr.p->logFilePtr)->operation;
trigPtr.p->operation->noOfBytes = 0;
Thread |
---|
• bk commit into 5.0 tree (jonas:1.1984) BUG#14028 | jonas | 13 Mar |