An error occurred fetching the project authors.
  1. 25 Jan, 2005 1 commit
  2. 24 Jan, 2005 1 commit
  3. 19 Jan, 2005 2 commits
    • jimw@mysql.com's avatar
      Warn when mysqld starts up with lower_case_table_names=2 but datadir is · 3bdfe448
      jimw@mysql.com authored
      on a case-sensitive filesystem. (Bug #7887)
      3bdfe448
    • timour@mysql.com's avatar
      Final patch for BUG#4285. · 7fb0de20
      timour@mysql.com authored
      This patch collects all previous patches into one.
      
      The main problem was due to that there is are two variables -
      dflt_key_cache and sql_key_cache with have more or less duplicate
      function. The reson for the bug was that the default value in the key
      cache hash was set to dflt_key_cache, then sql_key_cache was set to a
      new key cache object, and then dflt_key_cache was set to sql_key_cache
      which was different from the dflt_key_cache_var. After sending SIGHUP,
      the server was using the original default value for the key cache hash,
      which was different from the actual key cache object used for the
      default key cache.
      7fb0de20
  4. 12 Jan, 2005 1 commit
  5. 06 Jan, 2005 1 commit
  6. 24 Dec, 2004 1 commit
  7. 23 Dec, 2004 1 commit
    • wax@kishkin.ru's avatar
      fix indentation · 4788b152
      wax@kishkin.ru authored
      add space after comma
      add space after equal
      add comments in vio_close_shared_memory()
      4788b152
  8. 22 Dec, 2004 1 commit
  9. 20 Dec, 2004 1 commit
    • tomas@poseidon.ndb.mysql.com's avatar
      added config parameter Group on connection · 7b47be89
      tomas@poseidon.ndb.mysql.com authored
          moved NdbWaiter, m_ndb_cluster_connection, to impl class
          moved node selection things to cluster connection
          moved all private things to impl class
          added opts for shared memory and node selection
          changed opts handling somewhat; introduced enum for options and common handling of option variables
          added checks for transporter support
          automatic addition of shared mem transporters
          moved wait_until_ready code to cluster connection
          added control of usage of new node selection method
      7b47be89
  10. 14 Dec, 2004 1 commit
    • wax@kishkin.ru's avatar
      BUG#6056 · 0c8a78cc
      wax@kishkin.ru authored
      (continue)
      added event_conn_closed
      replaced WaitForSingleObject on WaitForMultipleObjects
      inserted a check in vio_close()
      added SetEvent() for event_conn_closed
      0c8a78cc
  11. 13 Dec, 2004 1 commit
  12. 09 Dec, 2004 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      Fix for bug #6765 "Implicit access to time zone description · 4b0882e0
      dlenev@brandersnatch.localdomain authored
      tables requires privileges for them if some table or column level grants
      present" (with after-review fixes).
      
      We should set SELECT_ACL for implicitly opened tables in 
      my_tz_check_n_skip_implicit_tables() to be able to bypass privilege
      checking in check_grant(). Also we should exclude those tables from
      privilege checking in multi-update.
      4b0882e0
  13. 07 Dec, 2004 1 commit
  14. 02 Dec, 2004 1 commit
  15. 30 Nov, 2004 6 commits
  16. 29 Nov, 2004 1 commit
  17. 23 Nov, 2004 1 commit
  18. 18 Nov, 2004 1 commit
  19. 17 Nov, 2004 1 commit
    • tomas@poseidon.ndb.mysql.com's avatar
      Enabled usage of new system variables for ndb · 1700bf38
      tomas@poseidon.ndb.mysql.com authored
        - ndb_use_exact_count
        - ndb_autoincrement_prefetch_sz
        - ndb_use_transactions
        - ndb_force_send
      moved "inlined" functions to .cc file since they are virtual anyways
      enabled printout od ndb errors in warnings even if mapping existst to mysql error code
      1700bf38
  20. 11 Nov, 2004 1 commit
  21. 10 Nov, 2004 1 commit
  22. 07 Nov, 2004 1 commit
    • monty@mysql.com's avatar
      Simpler arena swapping code · b903a129
      monty@mysql.com authored
      Now thd->mem_root is a pointer to thd->main_mem_root and THR_MALLOC is a pointer to thd->mem_root.
      This gives us the following benefits:
      - Allow us to easily detect if arena has already been swapped before (this fixes a bug in setup_conds() where arena was swaped twice in some cases)
      - Faster swaps of arenas (as we don't have to copy the whole MEM_ROOT)
      - We don't anymore have to call my_pthread_setspecific_ptr(THR_MALLOC,...) to change where memory is alloced. Now it's enough to set thd->mem_root
      b903a129
  23. 04 Nov, 2004 1 commit
    • wax@kishkin.ru's avatar
      BUG#6056 · 618428d2
      wax@kishkin.ru authored
      fixed MySQL can't clean shutdown with --shared-memory
      618428d2
  24. 02 Nov, 2004 2 commits
  25. 01 Nov, 2004 1 commit
  26. 27 Oct, 2004 1 commit
  27. 25 Oct, 2004 1 commit
  28. 20 Oct, 2004 2 commits
  29. 19 Oct, 2004 1 commit
    • monty@mishka.local's avatar
      Review of all code pushed since last review · 04c23808
      monty@mishka.local authored
      Simple optimzations and cleanups
      Removed compiler warnings and fixed portability issues
      Added client functions 'mysql_embedded()' to allow client to check if we are using embedded server
      Fixes for purify
      04c23808
  30. 17 Oct, 2004 1 commit
    • dellis@goetia.(none)'s avatar
      mysqld.cc: · b9509655
      dellis@goetia.(none) authored
        BUG #5731 key_buffer_size not properly restricted to 4GB; use UINT_MAX32 for clarity.
      b9509655
  31. 13 Oct, 2004 1 commit
  32. 07 Oct, 2004 1 commit
    • monty@mysql.com's avatar
      After merge fixes · 6239edc1
      monty@mysql.com authored
      Some bigger code changes was necessary becasue of the multi-table-update and the new HANDLER code
      6239edc1