1. 04 Feb, 2010 1 commit
  2. 03 Feb, 2010 1 commit
    • 's avatar
      Bug #50414 valgrind warnings: invalid file descriptor -1 in syscall · da012252
      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.
      da012252
  3. 28 Jan, 2010 1 commit
  4. 25 Jan, 2010 1 commit
  5. 22 Jan, 2010 1 commit
  6. 20 Jan, 2010 7 commits
  7. 19 Jan, 2010 1 commit
    • Bjorn Munch's avatar
      Bug#43005 main.init_connect fails on Windows due to wrong quoting of args · 01795763
      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
      01795763
  8. 07 Jan, 2010 2 commits
  9. 06 Jan, 2010 6 commits
  10. 05 Jan, 2010 2 commits
  11. 21 Dec, 2009 1 commit
  12. 16 Dec, 2009 2 commits
  13. 15 Dec, 2009 5 commits
  14. 08 Dec, 2009 1 commit
  15. 02 Dec, 2009 4 commits
  16. 01 Dec, 2009 4 commits
    • Satya B's avatar
      merge to mysql-5.1-bugteam · f327aa6e
      Satya B authored
      f327aa6e
    • Satya B's avatar
      Addition to Innodb Plugin 1.0.6 snapshot · a5b6f693
      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.
      a5b6f693
    • Gleb Shchepa's avatar
      Bug #38883 (reopened): thd_security_context is not thread safe, crashes? · b2fc9114
      Gleb Shchepa authored
      manual merge 5.0-->5.1, updating InnoDB plugin.
      b2fc9114
    • Gleb Shchepa's avatar
      Bug #38883 (reopened): thd_security_context is not thread safe, crashes? · 5f31dbdc
      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.
      5f31dbdc