An error occurred fetching the project authors.
  1. 28 Dec, 2005 1 commit
  2. 22 Dec, 2005 1 commit
  3. 15 Dec, 2005 1 commit
  4. 08 Dec, 2005 1 commit
  5. 07 Dec, 2005 1 commit
  6. 06 Dec, 2005 1 commit
  7. 30 Nov, 2005 1 commit
  8. 23 Nov, 2005 1 commit
    • monty@mysql.com's avatar
      Table definition cache, part 2 · e42c9809
      monty@mysql.com authored
      The table opening process now works the following way:
      - Create common TABLE_SHARE object
      - Read the .frm file and unpack it into the TABLE_SHARE object
      - Create a TABLE object based on the information in the TABLE_SHARE
        object and open a handler to the table object
      
      Other noteworthy changes:
      - In TABLE_SHARE the most common strings are now LEX_STRING's
      - Better error message when table is not found
      - Variable table_cache is now renamed 'table_open_cache'
      - New variable 'table_definition_cache' that is the number of table defintions that will be cached
      - strxnmov() calls are now fixed to avoid overflows
      - strxnmov() will now always add one end \0 to result
      - engine objects are now created with a TABLE_SHARE object instead of a TABLE object.
      - After creating a field object one must call field->init(table) before using it
      
      - For a busy system this change will give you:
       - Less memory usage for table object
       - Faster opening of tables (if it's has been in use or is in table definition cache)
       - Allow you to cache many table definitions objects
       - Faster drop of table
      e42c9809
  9. 10 Nov, 2005 1 commit
    • guilhem@mysql.com's avatar
      WL#2971 "change log-bin-trust-routine-creators=0 to apply only to functions". · ff46e549
      guilhem@mysql.com authored
      Indeed now that stored procedures CALL is not binlogged, but instead the invoked substatements are,
      the restrictions applied by log-bin-trust-routine-creators=0 are superfluous for procedures.
      They still need to apply to functions where function calls are written to the binlog (for example as "DO myfunc(3)").
      We rename the variable to log-bin-trust-function-creators but allow the old name until some future version (and issue a warning if old name is used).
      ff46e549
  10. 03 Nov, 2005 1 commit
  11. 01 Nov, 2005 1 commit
  12. 25 Oct, 2005 2 commits
    • patg@krsna.patg.net's avatar
      BUG# 12123 · 7243b7bb
      patg@krsna.patg.net authored
      Made change to mysqlimport to set character_set_database to binary to 
      make importing various charsets/columns work correctly.
      7243b7bb
    • kent@mysql.com's avatar
      Makefile.am: · 257b17ba
      kent@mysql.com authored
        Option to set environment variable MTR_BUILD_THREAD to a small
        number, from what mysql-test-run calculate port numbers that
        will not conflict with other runs with different thread num
      257b17ba
  13. 18 Oct, 2005 3 commits
  14. 13 Sep, 2005 1 commit
    • monty@mishka.mysql.fi's avatar
      Added option --valgrind-mysqltest to mysql-test-run · f348f62c
      monty@mishka.mysql.fi authored
      Added flag to Field::store(longlong) to specify if value is unsigned.
      This fixes bug #12750: Incorrect storage of 9999999999999999999 in DECIMAL(19, 0)
      Fixed warning from valgrind in CREATE ... SELECT
      Fixed double free of mysql.options if reconnect failed
      f348f62c
  15. 09 Sep, 2005 1 commit
  16. 26 Aug, 2005 1 commit
  17. 15 Jul, 2005 1 commit
  18. 24 Jun, 2005 1 commit
  19. 21 Jun, 2005 1 commit
  20. 10 Jun, 2005 2 commits
    • kent@mysql.com's avatar
      mtr_process.pl: · a2073df2
      kent@mysql.com authored
        Added a sleep for 5 seconds when shuting down,
        work around for strange problem with server restarts
      mtr_cases.pl:
        Set default time zone as opt to mysqld
      mysql-test-run.pl:
        Enabled --mysqld=<flags> to work
        Put some Windows path names into environment,
        to be used in --replace_result
      mysql-test-run.sh:
        Make shell script tolerant to Windows change in test cases
      a2073df2
    • serg@serg.mylan's avatar
      mysql-test/mysql-test-run.sh · e1870b75
      serg@serg.mylan authored
          don't start ndb cluster if no test uses it.
      e1870b75
  21. 09 Jun, 2005 1 commit
  22. 05 Jun, 2005 1 commit
    • monty@mysql.com's avatar
      Cleanup during review · 25a2c4a7
      monty@mysql.com authored
      Simple optimization for 2 argument usage to function of variable arguments
      Fix stack overrun when using 1+1+1+1+1+1+1+....
      Update crash-me results for 5.0
      Don't call post_open if pre_open() fails (optimization)
      25a2c4a7
  23. 26 May, 2005 1 commit
  24. 25 May, 2005 1 commit
  25. 18 May, 2005 1 commit
  26. 15 May, 2005 1 commit
    • kent@mysql.com's avatar
      mysqltest.c, mysql-test-run.sh: · 221b1cca
      kent@mysql.com authored
        Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
      mysql-test-run.sh, suppress.purify:
        Use Purify suppress file
      221b1cca
  27. 05 May, 2005 1 commit
    • gbichot@quadita2.mysql.com's avatar
      Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146... · b72ae4fe
      gbichot@quadita2.mysql.com authored
        Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions).
        Approximative, because it's using our binlogging way (what we call "query"-level) and this is not as good as record-level binlog (5.1) would be. It imposes several
        limitations to routines, and has caveats (which I'll document, and for which the server will try to issue errors but that is not always possible).
        Reason I don't propagate caller info to the binlog as planned is that on master and slave
        users may be different; even with that some caveats would remain.
      b72ae4fe
  28. 28 Apr, 2005 1 commit
  29. 27 Apr, 2005 1 commit
  30. 07 Apr, 2005 1 commit
  31. 06 Apr, 2005 1 commit
  32. 03 Apr, 2005 1 commit
  33. 31 Mar, 2005 1 commit
  34. 30 Mar, 2005 2 commits
  35. 29 Mar, 2005 1 commit