- 03 Feb, 2010 1 commit
-
-
unknown authored
write()/read() Sometimes stop/restart master or stop/restart salve can cause network error, which can cause the 'invalid file descriptor -1 in syscall write()/read()' warnings. All involved test cases except rpl_slave_load_remove_tmpfile belong to the kind of network error. So they are expected. The 'rpl_slave_load_remove_tmpfile' belongs to file error, but it is testing the file error as following code: DBUG_EXECUTE_IF("remove_slave_load_file_before_write", my_close(fd,MYF(0)); fd= -1; my_delete(fname, MYF(0));); So it's expected too. To fix the problem, add the valgrind warnings to the global suppression list to suppress it. mysql-test/include/mtr_warnings.sql: Added code to suppress valgrind warnings: invalid file descriptor -1 in syscall write()/read().
-
- 28 Jan, 2010 1 commit
-
-
Bjorn Munch authored
-
- 25 Jan, 2010 1 commit
-
-
Bjorn Munch authored
As suggested, convert internally to value of build_thread
-
- 22 Jan, 2010 1 commit
-
-
Bernd Ocklin authored
-
- 20 Jan, 2010 7 commits
-
-
Bjorn Munch authored
-
Bjorn Munch authored
-
Bjorn Munch authored
-
Bjorn Munch authored
delimiter not executed so does not recognize end of block Always execute delimiter command, revert after false if() block.
-
Bernd Ocklin authored
-
Bjorn Munch authored
valgrind pointed to a buffer allocated by my_realloc which looked fishy Replaced size with what was probably intended, added test case. Now also fixed line after review comment
-
Bjorn Munch authored
Since the exec command line is passed on externally, it cannot take newlines Simply replace \n with space Now also added test case
-
- 19 Jan, 2010 1 commit
-
-
Bjorn Munch authored
- The arguments are properly quoted when mtr.pl calls my_safe_process but unfortunately the all off when running with active state perl and stays in cygwin perl. - Extend the patch to only quote args that are not already quoted This a redo of previous commit, will be included in next push
-
- 07 Jan, 2010 2 commits
-
-
Bjorn Munch authored
-
Bjorn Munch authored
Undid amendment allowing pending reap after switching connections Moved check for pending reap earlier; failed if running with ps-protocol
-
- 06 Jan, 2010 6 commits
-
-
Bjorn Munch authored
Small amendment: ignore pending reap when switching connection, add test
-
Bjorn Munch authored
-
Bjorn Munch authored
-
Bjorn Munch authored
Added them NB the 6th case is adapted to Bug no. 49269, gives wrong output without it
-
Bjorn Munch authored
Set a flag after send to trap the case
-
Bjorn Munch authored
Implemented --lowercase_result which lower cases next result
-
- 05 Jan, 2010 2 commits
-
-
Bjorn Munch authored
Was available in v1 Porting to v2 required some rewriting Updated after review comments
-
Bjorn Munch authored
Combinations beginning with -- not allowed Allow them...
-
- 21 Dec, 2009 1 commit
-
-
Bjorn Munch authored
-
- 16 Dec, 2009 2 commits
-
-
Bjorn Munch authored
-
Bjorn Munch authored
-
- 15 Dec, 2009 5 commits
-
-
Ramil Kalimullin authored
NULLable BIGINT and INT columns in comparison Problem: a consequence of the fix for 43668. Some Arg_comparator inner initialization missed, that may lead to unpredictable (wrong) comparison results. Fix: always properly initialize Arg_comparator before its usage. mysql-test/r/select.result: Fix for bug#49517: Inconsistent behavior while using NULLable BIGINT and INT columns in comparison -test result. mysql-test/t/select.test: Fix for bug#49517: Inconsistent behavior while using NULLable BIGINT and INT columns in comparison -test case. sql/item_cmpfunc.cc: Fix for bug#49517: Inconsistent behavior while using NULLable BIGINT and INT columns in comparison - now all Arg_comparator::set_cmp_func() set Arg_comparator::set_null to ensure its proper initialization in all cases (by default it's set to TRUE in constructors). sql/item_cmpfunc.h: Fix for bug#49517: Inconsistent behavior while using NULLable BIGINT and INT columns in comparison - now all Arg_comparator::set_cmp_func() set Arg_comparator::set_null to ensure its proper initialization in all cases (by default it's set to TRUE in constructors).
-
Bjorn Munch authored
Extracts last 20 lines if no output after failure
-
Georgi Kodinov authored
was killed Merge the fix from 5.1-bugteam to 5.1-main
-
Georgi Kodinov authored
Merge the fix from 5.1-bugteam to 5.1-main
-
Georgi Kodinov authored
Merge the fix from 5.1-bugteam to 5.1-main
-
- 08 Dec, 2009 1 commit
-
-
unknown authored
-
- 02 Dec, 2009 4 commits
-
-
unknown authored
-
Satya B authored
Add the test to disabled list and remove from the experimental list.
-
Georgi Kodinov authored
-
Georgi Kodinov authored
-
- 01 Dec, 2009 5 commits
-
-
Satya B authored
-
Satya B authored
the last IF ELSE part which decides the plugin name is not relevant as we still have to substitute the occurences of INNOBASE with INNODB_PLUGIN. Remove the last IF ELSE part in CMakeLists.txt as it doesn't make sense in 5.1.
-
Gleb Shchepa authored
manual merge 5.0-->5.1, updating InnoDB plugin.
-
Gleb Shchepa authored
The bug 38816 changed the lock that protects THD::query from LOCK_thread_count to LOCK_thd_data, but didn't update the associated InnoDB functions. 1. The innobase_mysql_prepare_print_arbitrary_thd and the innobase_mysql_end_print_arbitrary_thd InnoDB functions have been removed, since now we have a per-thread mutex: now we don't need to wrap several inter-thread access tries to THD::query with a single global LOCK_thread_count lock, so we can simplify the code. 2. The innobase_mysql_print_thd function has been modified to lock LOCK_thd_data in direct way.
-
Georgi Kodinov authored
-