1. 13 Feb, 2009 1 commit
  2. 12 Feb, 2009 13 commits
  3. 11 Feb, 2009 5 commits
  4. 10 Feb, 2009 15 commits
  5. 09 Feb, 2009 6 commits
    • Mats Kindahl's avatar
      Merging with 5.1-bugteam. · cb731001
      Mats Kindahl authored
      cb731001
    • Matthias Leich's avatar
      Merge 5.0 -> 5.1 · f1a55f8f
      Matthias Leich authored
      f1a55f8f
    • Matthias Leich's avatar
      This belongs to the fix for · 33445d8f
      Matthias Leich authored
      Bug#42003 tests missing the disconnect of connections <> default
      second slice
      Content:
      1. wait_until_count_sessions.inc
         - One PB run of a test using this routine failed because
           5 seconds timeout were exceeded. Although I have some doubts
           if the assigned timeout was really too small, I increase the
           value to 10. We waste the additional 5 seconds only if the
           tests fails anyway.
         - Print the content of the PROCESSLIST if the poll routine fails
      2. minor improvements of formatting
      3. query_cache_notembedded:
         Activate the wait_until_count_sessions.inc routine which was
         unfortunately forgotten in the changeset before.
      33445d8f
    • Davi Arnaut's avatar
      Merge from upstream 5.1-bugteam. · a8c57f9a
      Davi Arnaut authored
      a8c57f9a
    • Vladislav Vaintroub's avatar
      Bug#42709: safe_process_win.cc does not print correct system error messages. · 2980cd60
      Vladislav Vaintroub authored
      Fix: use FormatMessage() to output system errors , not strerror()
      2980cd60
    • Davi Arnaut's avatar
      Bug#42634: % character in query can cause mysqld signal 11 segfault · 33a36ce9
      Davi Arnaut authored
      The problem is that a unfiltered user query was being passed as
      the format string parameter of sql_print_warning which later
      performs printf-like formatting, leading to crashes if the user
      query contains formatting instructions (ie: %s). Also, it was
      using THD::query as the source of the user query, but this
      variable is not meaningful in some situations -- in a delayed
      insert, it points to the table name.
      
      The solution is to pass the user query as a parameter for the
      format string and use the function parameter query_arg as the
      source of the user query.
      33a36ce9