From: Date: March 13 2006 2:42pm Subject: bk commit into 4.1 tree (jonas:1.2464) BUG#14028 List-Archive: http://lists.mysql.com/commits/3775 X-Bug: 14028 Message-Id: <20060313134219.F31EBFB217@perch.ndb.mysql.com> Below is the list of changes that have just been committed into a local 4.1 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.2464 06/03/13 14:42:16 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.23 06/03/13 14:42:12 jonas@stripped +2 -2 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/41-work --- 1.22/ndb/src/kernel/blocks/backup/Backup.cpp 2005-12-02 09:27:03 +01:00 +++ 1.23/ndb/src/kernel/blocks/backup/Backup.cpp 2006-03-13 14:42:12 +01:00 @@ -2325,7 +2325,7 @@ const Uint32 maxInsert[] = { 2048, // Temporarily to solve TR515 //25, // 100 bytes - 2048, // 4k + 4096, // 4k 16*3000, // Max 16 tuples }; Uint32 minWrite[] = { @@ -3134,7 +3134,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;