- 08 Oct, 2007 10 commits
-
-
jonas@perch.ndb.mysql.com authored
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-ndb
-
jonas@perch.ndb.mysql.com authored
add list of pages being unmaped, so we can wait for it to be empty before dropping extents
-
jonas@perch.ndb.mysql.com authored
(introduced by only updating extent pages after pageout)
-
jonas@perch.ndb.mysql.com authored
(in test framework)
-
jonas@perch.ndb.mysql.com authored
handle partially complete LCP better in SR
-
jonas@perch.ndb.mysql.com authored
- only update extent pages *after* flush of real page has been done - sync both create/drop of table into undolog (for disk tables)
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-ndb
-
jonas@perch.ndb.mysql.com authored
(problem introduced by stew's timeout handling)
-
jonas@perch.ndb.mysql.com authored
fix SR1 and SR2
-
- 03 Oct, 2007 5 commits
-
-
stewart@flamingspork.com[stewart] authored
Index: ndb/storage/ndb/src/mgmclient/CommandInterpreter.cpp ===================================================================
-
stewart@flamingspork.com[stewart] authored
Index: ndb/storage/ndb/src/common/debugger/EventLogger.cpp ===================================================================
-
stewart@flamingspork.com[stewart] authored
Index: ndb/storage/ndb/src/common/debugger/EventLogger.cpp ===================================================================
-
stewart@willster.(none) authored
into willster.(none):/home/stewart/Documents/MySQL/5.1/ndb-merge
-
stewart@flamingspork.com[stewart] authored
Close the event log on shutdown of mgmd (in stopEventLog()) Index: ndb-work/ndb/src/mgmsrv/MgmtSrvr.cpp ===================================================================
-
- 02 Oct, 2007 4 commits
-
-
jmiller/root@ndbqa01.mysql.com authored
into mysql.com:/usr/clones/mysql-5.1-new-ndb
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-target-5.1.22
-
- 01 Oct, 2007 2 commits
-
-
stewart@willster.(none) authored
into willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
-
stewart@willster.(none) authored
-
- 29 Sep, 2007 1 commit
-
-
jonas@perch.ndb.mysql.com authored
add even more tests
-
- 28 Sep, 2007 4 commits
-
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
-
jonas@perch.ndb.mysql.com authored
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-ndb
-
jonas@perch.ndb.mysql.com authored
(recommit for correct merge order)
-
- 27 Sep, 2007 1 commit
-
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
-
- 25 Sep, 2007 5 commits
-
-
mikael@dator6.(none) authored
into dator6.(none):/home/mikael/mysql_clones/bug30996
-
stewart@willster.(none) authored
Rename: ndb/src/common/util/ndb_rand.c -> storage/ndb/src/common/util/ndb_rand.c ndb_rand.h: Rename: ndb/include/util/ndb_rand.h -> storage/ndb/include/util/ndb_rand.h
-
stewart@willster.(none) authored
into willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
-
stewart@flamingspork.com[stewart] authored
timoOutLoopStartLab() checks if any transactions have been delayed for so long that we are forced to perform some action (e.g. abort, resend etc). It is *MEANT* to (according to the comment): > To avoid aborting both transactions in a deadlock detected by time-out > we insert a random extra time-out of upto 630 ms by using the lowest > six bits of the api connect reference. > We spread it out from 0 to 630 ms if base time-out is larger than 3 sec, > we spread it out from 0 to 70 ms if base time-out is smaller than 300 msec, > and otherwise we spread it out 310 ms. The comment (as all do) lies. the API connect reference is not very random, producing incredibly predictable "random" numbers. This could lead to both txns being aborted instead of just one. Before: timeout value: 123 3 timeout value: 122 2 timeout value: 122 2 timeout value: 122 2 timeout value: 123 3 After: timeout value: 127 7 timeout value: 126 6 timeout value: 129 9 timeout value: 139 19 timeout value: 137 17 timeout value: 151 31 timeout value: 130 10 timeout value: 132 12 Index: ndb-work/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp ===================================================================
-
mikael@dator6.(none) authored
into dator6.(none):/home/mikael/mysql_clones/bug30996
-
- 24 Sep, 2007 2 commits
-
-
mats@kindahl-laptop.dnsalias.net authored
into kindahl-laptop.dnsalias.net:/home/bkroot/mysql-5.1-release
-
mats@kindahl-laptop.dnsalias.net authored
Second patch to initailize more uninitialized variables.
-
- 20 Sep, 2007 2 commits
-
-
mats@kindahl-laptop.dnsalias.net authored
into kindahl-laptop.dnsalias.net:/home/bk/b31076-mysql-5.1-release
-
mats@kindahl-laptop.dnsalias.net authored
Row-based replication crashes when replicating from pre-5.1.22 to 5.1.22 due to an uninitialized variable.
-
- 19 Sep, 2007 1 commit
-
-
Removed semicolon causing build syntax issues per pekka
-
- 15 Sep, 2007 1 commit
-
-
mikael@dator6.(none) authored
-
- 14 Sep, 2007 2 commits
-
-
gkodinov/kgeorge@magare.gmz authored
The optimizer sets index traversal in reverse order only if there are used key parts that are not compared to a constant. However using the primary key as an ORDER BY suffix rendered the check incomplete : going in reverse order must still be used even if all the parts of the secondary key are compared to a constant. Fixed by relaxing the check and set reverse traversal even when all the secondary index keyparts are compared to a const. Also account for the case when all the primary keys are compared to a constant.
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
-