1. 24 Jan, 2012 1 commit
  2. 23 Jan, 2012 4 commits
  3. 20 Jan, 2012 5 commits
  4. 19 Jan, 2012 4 commits
  5. 18 Jan, 2012 3 commits
  6. 17 Jan, 2012 2 commits
  7. 16 Jan, 2012 6 commits
    • Sergei Golubchik's avatar
      merge · 8b278b44
      Sergei Golubchik authored
      8b278b44
    • Sergei Golubchik's avatar
      remove unused flag · 8d13f970
      Sergei Golubchik authored
      8d13f970
    • Sergei Golubchik's avatar
      query cache sysvar fixes · 2ec0f46b
      Sergei Golubchik authored
      sql/share/errmsg-utf8.txt:
        correct the error message, as query_cache_type variable is not read-ony anymore
      sql/sql_cache.cc:
        the caller should verify that query cache resize
        is possible, before trying it
      sql/sys_vars.cc:
        * test if qc resize is possible in the sysvar on_check() funntion,
          not in the on_update() function.
        * use the error message that better describes the problem
      2ec0f46b
    • Sergei Golubchik's avatar
      enable test cases for bugs fixed in xtradb. · baca1a40
      Sergei Golubchik authored
      disable test cases for bugs not fixed in xtradb.
      
      mysql-test/suite/innodb/t/innodb-lock.test:
        instead of disabling the test in disabled.def
        (hoping that somebody someday will enable it),
        skip it only for xtradb (not for innodb), and
        only for the current xtradb version. the test
        will enable itself automatically on the next
        xtradb merge
      mysql-test/suite/innodb/t/innodb_cmp_drop_table.test:
        instead of disabling the test in disabled.def
        (hoping that somebody someday will enable it),
        skip it only for xtradb (not for innodb), and
        only for the current xtradb version. the test
        will enable itself automatically on the next
        xtradb merge
      mysql-test/suite/innodb/t/innodb_corrupt_bit.test:
        fix the error number
      storage/innobase/handler/ha_innodb.cc:
        fix the error number
      storage/xtradb/handler/ha_innodb.cc:
        fix the error number
      baca1a40
    • Sergei Golubchik's avatar
      minor mtr fix · 0c075461
      Sergei Golubchik authored
      mysql-test/mysql-test-run.pl:
        strace-client does not take an argument
      0c075461
    • Sergei Golubchik's avatar
      mysql-5.5 merge · 38e3ae15
      Sergei Golubchik authored
      38e3ae15
  8. 13 Jan, 2012 3 commits
  9. 12 Jan, 2012 1 commit
  10. 11 Jan, 2012 3 commits
  11. 10 Jan, 2012 3 commits
  12. 09 Jan, 2012 4 commits
  13. 08 Jan, 2012 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-77 - possible deadlock in XtraDB async io subsystem on Windows. · cf86abff
      Vladislav Vaintroub authored
      Split IO threads into ones that handle only read completion and ones that handle only write completion, as it was originally done, but got lost with "completion port" patch. The reason we need to have dedicated read and dedicated write threads is that read completion routine can block waiting for write io to complete, and in rare cases where all io threads are handling async reads, it can deadlock.
      cf86abff