1. 10 May, 2006 2 commits
  2. 06 May, 2006 3 commits
    • anozdrin@mysql.com's avatar
      Partial fix for BUG#14106: IM: im_life_cycle and im_utils · 3b74668b
      anozdrin@mysql.com authored
      tests fail on FreeBSD.
      
      The patch contains of the following:
        - make Instance Manager, running in the daemon mode, dump
          the pid of angel-process in the special file;
        - default value of angel-pid-file-name is 'mysqlmanager.angel.pid';
        - if ordinary (IM) pid-file-name is specified in the configuration,
          angel-pid-file-name is updated according to the following
          rule: extension of the basename of pid-file-name is replaced by
          '.angel.pid.
          For example:
          - pid-file-name: /tmp/im.pid
            => angel-pid-file-name: /tmp/im.angel.pid
          - pid-file-name: /tmp/im.txt
            => angel-pid-file-name: /tmp/im.angel.pid
          - pid-file-name: /tmp/5.0/im
            => angel-pid-file-name: /tmp/5.0/im.angel.pid
        - add support for configuration option to customize angel
          pid file name;
        - fix test suite to use angel pid to kill Instance Manager
          by all means if something went wrong.
      
      Background
      ----------
      
      The problem is that on some OSes (FreeBSD for one) Instance
      Manager does not get SIGTERM, so can not shutdown gracefully.
      Test suite wasn't able to cope with it, so this leads to the
      mess in test results.
      
      The problem should be split into two:
        - fix signal handling;
        - fix test suite.
      
      This patch fixes test suite so that it will be able to kill
      uncooperative Instance Manager. In order to achieve this,
      test suite needs to know PID of IM Angel process.
      3b74668b
    • dlenev@mysql.com's avatar
      Fix for bug #17260 "Multiple invocations of triggers or stored functions · d8bc635e
      dlenev@mysql.com authored
      hog memory".
      
      During each invocation of stored function or trigger some objects which
      lifetime is one function call (e.g. sp_rcontext) were allocated on
      arena/memroot of calling statement. This led to consumption of fixed amount
      of memory for each function/trigger invocation and so statements which
      involve lot of them were hogging memory. This in its return led to OOM
      crashes or freezes.
      
      This fix introduces new memroot and arena for objects which lifetime is
      whole duration of function call. So all memory consumed by such objects
      is freed at the end of function call.
      d8bc635e
    • kroki@mysql.com's avatar
      Fix race condition of concurrent RENAME and SHOW TABLES which caused · aeb75a2e
      kroki@mysql.com authored
      random test failures.
      aeb75a2e
  3. 04 May, 2006 2 commits
  4. 03 May, 2006 1 commit
  5. 02 May, 2006 6 commits
  6. 01 May, 2006 9 commits
  7. 29 Apr, 2006 3 commits
  8. 28 Apr, 2006 14 commits