1. 04 Feb, 2010 1 commit
  2. 03 Feb, 2010 1 commit
    • unknown's avatar
      Bug #50414 valgrind warnings: invalid file descriptor -1 in syscall · 6a402e7c
      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().
      6a402e7c
  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 · 9ff20f55
      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
      9ff20f55
  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 · b19ae492
      Satya B authored
      b19ae492
    • Satya B's avatar
      Addition to Innodb Plugin 1.0.6 snapshot · 9128418e
      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.
      
      9128418e
    • Gleb Shchepa's avatar
      Bug #38883 (reopened): thd_security_context is not thread safe, crashes? · 60b76cd7
      Gleb Shchepa authored
      manual merge 5.0-->5.1, updating InnoDB plugin.
      60b76cd7
    • Gleb Shchepa's avatar
      Bug #38883 (reopened): thd_security_context is not thread safe, crashes? · ee136e3f
      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.
      ee136e3f