An error occurred fetching the project authors.
  1. 28 Feb, 2007 1 commit
  2. 24 Oct, 2006 2 commits
  3. 01 Sep, 2006 1 commit
  4. 10 Aug, 2006 1 commit
  5. 04 Jul, 2006 1 commit
  6. 17 Jan, 2006 1 commit
  7. 15 Sep, 2005 1 commit
  8. 09 Sep, 2005 1 commit
  9. 19 Aug, 2005 1 commit
    • sasha@asksasha.com's avatar
      updated patch for BUG#4680 (incomplete DROP DATABASE breaking replication). · c594ab79
      sasha@asksasha.com authored
      We binlog the DROP TABLE for each table that was actually dropped. Per Sergei's 
      suggestion a fixed buffer for the DROP TABLE query is pre-allocated from THD pool, and 
      logging now is done in batches - new batch is started if the buffer becomes full.
      Reduced memory usage by reusing the table list instead of accumulating a list of 
      dropped table names. Also fixed the problem if the table was not actually dropped, eg
      due to permissions. Extended the test case to make sure batched query 
      logging does work.  
      c594ab79
  10. 27 Jul, 2005 1 commit
  11. 26 Jul, 2005 1 commit
    • monty@mysql.com's avatar
      Review fixes: · 4098c40d
      monty@mysql.com authored
      Fixed portability problem with bool in C programs
      Moved close_thread_tables out from LOCK_thread_count mutex (safety fix)
      my_sleep() -> pthread_cond_timedwait()
      4098c40d
  12. 07 Jun, 2005 1 commit
  13. 05 Mar, 2005 1 commit
  14. 25 Feb, 2005 1 commit
  15. 08 Feb, 2005 1 commit
  16. 25 Jan, 2005 1 commit
  17. 20 Jan, 2005 1 commit
    • lenz@mysql.com's avatar
      - renamed client_test -> mysql_client_test · 9675b069
      lenz@mysql.com authored
      - renamed the tests that use the embedded server (client_test -> 
        mysql_client_test_embedded, mysqltest -> mysql_test_embedded
        and changed some Makefiles and scripts so they are installed in $bindir
        (required to be able to run the test suite against the embedded server)
      9675b069
  18. 03 Jan, 2005 2 commits
  19. 30 Dec, 2004 1 commit
  20. 14 Dec, 2004 1 commit
    • wax@kishkin.ru's avatar
      corrected mysqltest.dsp · e81d48fd
      wax@kishkin.ru authored
      corrected mysql_test_run_new.dsp
      added dependency
      corrected path of mysql_test_run_new.dsp
      fixed wrong code
      added my_create_tables.c
      removed command_line
      fixed #elif
      restored NAME_MAX and MAX_FNAME
      added create_system_files()
      added compare() for windows
      added all files of testes in script
      added mysql-test in script
      e81d48fd
  21. 07 Dec, 2004 1 commit
  22. 02 Dec, 2004 1 commit
  23. 22 Nov, 2004 1 commit
  24. 19 Nov, 2004 2 commits
  25. 05 Nov, 2004 1 commit
  26. 21 Oct, 2004 1 commit
  27. 05 Sep, 2004 1 commit
  28. 24 Aug, 2004 1 commit
  29. 19 Aug, 2004 2 commits
  30. 12 Aug, 2004 2 commits
  31. 26 Jun, 2004 1 commit
  32. 24 Jun, 2004 1 commit
  33. 23 Jun, 2004 1 commit
  34. 22 Jun, 2004 1 commit
  35. 18 Jun, 2004 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      WL#1264 "Per-thread time zone support infrastructure". · 09ba29e5
      dlenev@brandersnatch.localdomain authored
      Added basic per-thread time zone functionality (based on public
      domain elsie-code). Now user can select current time zone
      (from the list of time zones described in system tables).
      All NOW-like functions honor this time zone, values of TIMESTAMP
      type are interpreted as values in this time zone, so now
      our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
      LOCAL TIME ZONE (or proper PostgresSQL type).
        
      WL#1266 "CONVERT_TZ() - basic time with time zone conversion 
      function".
        
      Fixed problems described in Bug #2336 (Different number of warnings 
      when inserting bad datetime as string or as number). This required
      reworking of datetime realted warning hadling (they now generated 
      at Field object level not in conversion functions).
        
      Optimization: Now Field class descendants use table->in_use member
      instead of current_thd macro.
      09ba29e5