- 01 Dec, 2006 27 commits
-
-
mskold/marty@linux.site authored
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1-new-ndb
-
mskold/marty@linux.site authored
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1
-
mskold/marty@linux.site authored
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1-new-ndb
-
mskold/marty@mysql.com/linux.site authored
Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
-
jonas@perch.ndb.mysql.com authored
Handle events "differently" so that dict doesnt get lock too often
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-work
-
jonas@perch.ndb.mysql.com authored
This prevent any subsequent node restarts, but it's better than crashing an alive node
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-work
-
jonas@perch.ndb.mysql.com authored
Skip rollback if only committedRead in transaction
-
jonas@perch.ndb.mysql.com authored
fixes to testprogram to test new impl. in 5.1
-
df@kahlann.erinye.com authored
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-work
-
gkodinov@dl145s.mysql.com authored
into dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.1-opt
-
jonas@perch.ndb.mysql.com authored
fix merge error
-
jonas@perch.ndb.mysql.com authored
add testcase for bug#24717 + fix typo
-
df@kahlann.erinye.com authored
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
-
df@kahlann.erinye.com authored
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
-
pekka@orca.ndb.mysql.com authored
into orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-ndb
-
jonas@perch.ndb.mysql.com authored
5.1 version remove 5.0 version add general routing signal send tckeyref routed if needed...
-
jonas@perch.ndb.mysql.com authored
into perch.ndb.mysql.com:/home/jonas/src/51-work
-
jonas@perch.ndb.mysql.com authored
5.0 version Add some extra state to try to prevent sending committedread to node too early
-
jonas@perch.ndb.mysql.com authored
Fix typo that yeilded rare crash in ACC
-
gni/root@ts3-168.ts.cn.tlan authored
-
gni/root@ts3-168.ts.cn.tlan authored
into ts3-168.ts.cn.tlan:/home/ngb/mysql/mysql-5.1/mysql-5.1-new-ndb
-
pekka@orca.ndb.mysql.com authored
-
- 30 Nov, 2006 13 commits
-
-
mskold/marty@mysql.com/linux.site authored
bug#18487 UPDATE IGNORE not supported for unique constraint violation of non-primary key: only check pk if it is updated
-
mskold/marty@linux.site authored
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1-new-ndb
-
mskold/marty@linux.site authored
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1
-
mskold/marty@mysql.com/linux.site authored
bug#18487 UPDATE IGNORE not supported for unique constraint violation of non-primary key: only check pk if it is updated
-
df@kahlann.erinye.com authored
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
-
df@kahlann.erinye.com authored
-
monty@hasky.mysql.fi authored
into mysql.com:/home/my/mysql-5.1
-
monty@narttu.mysql.fi authored
into mysql.com:/home/my/mysql-5.1
-
monty@mysql.com/narttu.mysql.fi authored
Marked some functions as noreturn
-
monty@narttu.mysql.fi authored
into mysql.com:/home/my/mysql-5.1
-
monty@mysql.com/narttu.mysql.fi authored
Fixed new introduced bug in my_time.c
-
monty@mysql.com/narttu.mysql.fi authored
Don't assert if my_thread_end() is called twice (common case)
-
The reason of this valgrind's compaint is not a bug but rather a feature of bitwise ops: for any value of the byte x x | 1 -> 1, and x & 0 -> 0. x, being a null_byte part of record[1] can be left unassigned even after ha_innobase::index_read_idx because the above and still be correct. Addding a check memory upon the invocation of the function can detect this fact long before record[1], old record, is eventually passed to my_write. Fixed with initialization of record[1]'s null_bytes part in open_table_from_share.
-