1. 04 Feb, 2010 3 commits
  2. 03 Feb, 2010 3 commits
    • Bjorn Munch's avatar
      upmerge 50414 · 963c7946
      Bjorn Munch authored
      963c7946
    • Bjorn Munch's avatar
      upmerge 50414 · 0aa948dc
      Bjorn Munch authored
      0aa948dc
    • 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. 29 Jan, 2010 1 commit
  4. 28 Jan, 2010 3 commits
  5. 25 Jan, 2010 4 commits
  6. 22 Jan, 2010 1 commit
  7. 21 Jan, 2010 1 commit
  8. 20 Jan, 2010 12 commits
  9. 19 Jan, 2010 3 commits
  10. 18 Jan, 2010 4 commits
  11. 15 Jan, 2010 3 commits
    • Sergey Glukhov's avatar
      compilation failure fix · b6685d35
      Sergey Glukhov authored
      b6685d35
    • Sergey Glukhov's avatar
      backported: · 5a4a98af
      Sergey Glukhov authored
      -WL#2822 INFORMATION_SCHEMA.ROUTINES: Add missing columns
      -WL#2003 INFORMATION_SCHEMA: PARAMETERS view
      -addon for 'I_S optimization' WL
      
      5a4a98af
    • unknown's avatar
      Fix for perfschema.binlog_stmt failure: · 5d279205
      unknown authored
              
      Problem: The test case failed because: (i) warning text in 
               result file differed from the warning output by the 
               server, and (ii) binlog contents in result file did
               not show the statements logged wrapped in BEGIN/COMMIT
               as it is the case after WL 2687.
            
      Solution: We update the result file, but first we change the
                unsafe warning text to also refer to performance_schema
                table(s). This required changing the result files for
                existing test cases that provide output for warnings 
                related to ER_BINLOG_UNSAFE_SYSTEM_TABLE. "Grepping" in
                result files, shows that only binlog_unsafe contained
                reference to such a warning.
            
                We also update the result file with the missing 
                BEGIN/COMMIT statements.
      5d279205
  12. 14 Jan, 2010 2 commits