- 11 Jan, 2007 1 commit
-
-
thek@kpdesk.mysql.com authored
into kpdesk.mysql.com:/home/thek/dev/mysql-4.0-maint
-
- 09 Jan, 2007 1 commit
-
-
thek@kpdesk.mysql.com authored
-
- 06 Nov, 2006 2 commits
-
-
thek@kpdesk.mysql.com authored
into kpdesk.mysql.com:/home/thek/dev/mysql-4.0-maint
-
thek@kpdesk.mysql.com authored
- The io cache flag seek_not_done was not set properly in the reinit_io_cache function call and this led my_seek to be called desipite an invalid file handle. - Added a test in reinit_io_cache to ensure we have a valid file handle before setting seek_not_done flag.
-
- 17 Oct, 2006 1 commit
-
-
tsmith/tim@siva.hindu.god authored
into siva.hindu.god:/usr/home/tim/m/bk/tmp/mrgOct16/40
-
- 02 Oct, 2006 1 commit
-
-
tsmith/tim@siva.hindu.god authored
into siva.hindu.god:/usr/home/tim/m/bk/40
-
- 29 Sep, 2006 1 commit
-
-
istruewing@chilla.local authored
into chilla.local:/home/mydev/mysql-4.0-bug20719
-
- 28 Sep, 2006 1 commit
-
-
istruewing@chilla.local authored
Deletes on a big index could crash the index when it needs to shrink. Put a forgotten negation operator in. No test case. It is too big for the test suite. And it does not work with 4.0, only with higher versions. It is attached to the bug report.
-
- 27 Sep, 2006 1 commit
-
-
istruewing@chilla.local authored
into chilla.local:/home/mydev/mysql-4.0-bug20719
-
- 23 Sep, 2006 1 commit
-
-
cmiller@zippy.cornsilk.net authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.0-maint
-
- 22 Sep, 2006 3 commits
-
-
istruewing@chilla.local authored
"concurrent insert" After merge fix.
-
istruewing@chilla.local authored
into chilla.local:/home/mydev/mysql-4.0-bug14400
-
istruewing@chilla.local authored
into chilla.local:/home/mydev/mysql-4.0-bug14400
-
- 15 Sep, 2006 1 commit
-
-
tsmith/tim@siva.hindu.god authored
- Fix my_read/my_write to handle return values from read/write correctly - Add debugging 'deprecated function' warning to my_lread/my_lwrite - Add debugging 'error, read/write interrupt not handled' warning to my_quick_read/my_quick_write There is no test case associated with these changes. However, this is a conservative change, and no repeatable test case is available.
-
- 07 Sep, 2006 1 commit
-
-
istruewing@chilla.local authored
"concurrent insert" Additional fix for full keys and test case.
-
- 06 Sep, 2006 1 commit
-
-
cmiller@zippy.cornsilk.net authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.0-maint
-
- 31 Aug, 2006 1 commit
-
-
cmiller@zippy.cornsilk.net authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.0-maint
-
- 30 Aug, 2006 1 commit
-
-
cmiller@zippy.cornsilk.net authored
event' from master" Since there is no repeatable test case, and this is obviously wrong, this is the most conservative change that might possibly work. The syscall read() wasn't checked for a negative return value for an interrupted read. The kernel sys_read() returns -EINTR, and the "library" layer maps that to return value of -1 and sets errno to EINTR. It's impossible (on Linux) for read() to set errno EINTR without the return value being -1 . So, if we're checking for EINTR behavior, we should not require that the return value be zero.
-
- 29 Aug, 2006 1 commit
-
-
istruewing@chilla.local authored
subject of "concurrent insert" Better fix by Monty: "The previous bug fix didn't work when using partial keys."
-
- 10 Aug, 2006 1 commit
-
-
monty@mysql.com/narttu.mysql.fi authored
Better bug fix for #14400 "Query joins wrong rows from table which is subject of "concurrent insert"" The previous bug fix didn't work when using partial keys. Don't use GNUC min/max operations are they are depricated. Fixed valgrind warning
-
- 29 Jul, 2006 1 commit
-
-
Corrected typo
-
- 28 Jul, 2006 3 commits
-
-
Man page for mysqld command move to section 8 (bug#21220)
-
Man page for "mysqld" command move to section 8 (bug#21220)
-
Man page for "mysqld" command move to section 8 (bug#21220)
-
- 26 Jul, 2006 1 commit
-
-
iggy@rolltop.ignatz42.dyndns.org authored
-
- 24 Jul, 2006 1 commit
-
-
Filter out strange control characters, messes up logs
-
- 21 Jul, 2006 1 commit
-
-
ingo/mydev@chilla.local authored
Fixed a possible problem with reading of dynamic records when a write cache is active. The cache must be flushed whenever a part of the file in the write cache is to be read. Added a read optimization to _mi_read_dynamic_record(). No test case. This was a hypothetical but existing problem.
-
- 08 Jul, 2006 1 commit
-
-
ingo/mydev@chilla.local authored
into chilla.local:/home/mydev/mysql-4.0-bug14400
-
- 07 Jul, 2006 2 commits
-
-
cmiller@maint1.mysql.com authored
into maint1.mysql.com:/data/localhome/cmiller/mysql-4.0__bug19006
-
cmiller@zippy.(none) authored
have a better test (and so this should be null-merged there). ALSO! Make it so that it accepts NPTL as a valid _equivalent_ implementation.
-
- 05 Jul, 2006 1 commit
-
-
joerg@mysql.com authored
-
- 01 Jul, 2006 1 commit
-
-
cmiller@zippy.(none) authored
On exactly-sized Strings, the String::c_ptr() function peeked beyond the end of the buffer, possibly into unititialized space to see whether the buffer was NUL-terminated. In a place that did peek improperly, we now use a c_ptr_safe() function, which doesn't peek where it shouldn't.
-
- 28 Jun, 2006 1 commit
-
-
ingo@mysql.com authored
It was possible that fetching a record by an exact key value (including the record pointer) could return a record with a different key value. This happened only if a concurrent insert added a record with the searched key value after the fetching statement locked the table for read. The search succeded on the key value, but the record was rejected as it was past the file length that was remembered at start of the fetching statement. With other words it was rejected as being a concurrently inserted record. The action to recover from this problem was to fetch the record that is pointed at by the next key of the index. This was repeated until a record below the file length was found. I do now avoid this loop if an exact match was searched. If this match is beyond the file length, it is now treated as "key not found". There cannot be another key with the same record pointer.
-
- 27 Jun, 2006 1 commit
-
-
joerg@mysql.com authored
-
- 26 Jun, 2006 1 commit
-
-
kent@mysql.com authored
For compatibility, don't use {..,..} in pattern matching make_binary_distribution.sh: Added .dylib and .sl as shared library extensions
-
- 13 Jun, 2006 1 commit
-
-
ramil@mysql.com authored
-
- 20 May, 2006 1 commit
-
-
kent@mysql.com authored
Always compile position independent
-
- 12 May, 2006 1 commit
-
-
kent@mysql.com authored
Change mode to -rw-rw-r-- dbug_add_tags.pl: Change mode to -rwxrwxr--
-
- 11 May, 2006 1 commit
-
-
kent@mysql.com authored
Stepped up to 4.0.28
-
- 06 May, 2006 1 commit
-
-
ingo@mysql.com authored
into mysql.com:/home/mydev/mysql-4.0-bug10405
-