An error occurred fetching the project authors.
  1. 03 Apr, 2007 1 commit
  2. 02 Apr, 2007 1 commit
  3. 26 Mar, 2007 2 commits
  4. 22 Mar, 2007 1 commit
  5. 21 Mar, 2007 1 commit
  6. 28 Feb, 2007 1 commit
  7. 21 Feb, 2007 1 commit
  8. 14 Feb, 2007 1 commit
  9. 07 Feb, 2007 1 commit
  10. 06 Feb, 2007 1 commit
  11. 01 Feb, 2007 1 commit
  12. 31 Jan, 2007 1 commit
  13. 24 Jan, 2007 1 commit
  14. 23 Jan, 2007 2 commits
  15. 22 Jan, 2007 1 commit
  16. 17 Jan, 2007 2 commits
  17. 08 Jan, 2007 1 commit
  18. 23 Dec, 2006 1 commit
  19. 15 Dec, 2006 1 commit
  20. 14 Dec, 2006 2 commits
  21. 30 Nov, 2006 4 commits
  22. 20 Nov, 2006 1 commit
    • monty@mysql.com/nosik.monty.fi's avatar
      Remove compiler warnings · e8258798
      monty@mysql.com/nosik.monty.fi authored
      (Mostly in DBUG_PRINT() and unused arguments)
      Fixed bug in query cache when used with traceing (--with-debug)
      Fixed memory leak in mysqldump
      Removed warnings from mysqltest scripts (replaced -- with #)
      e8258798
  23. 07 Nov, 2006 1 commit
  24. 24 Oct, 2006 1 commit
  25. 23 Oct, 2006 2 commits
  26. 19 Oct, 2006 1 commit
  27. 21 Sep, 2006 1 commit
  28. 15 Sep, 2006 1 commit
  29. 13 Sep, 2006 1 commit
  30. 12 Sep, 2006 1 commit
  31. 05 Sep, 2006 2 commits
    • mskold/marty@mysql.com/linux.site's avatar
    • guilhem@gbichot3.local's avatar
      Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". · e4d3595b
      guilhem@gbichot3.local authored
      In 5.0 we made LOAD DATA INFILE autocommit in all engines, while
      only NDB wanted that. Users and trainers complained that it affected
      InnoDB and was a change compared to 4.1 where only NDB autocommitted.
      To revert to the behaviour of 4.1, we move the autocommit logic out of mysql_load() into
      ha_ndbcluster::external_lock().
      The result is that LOAD DATA INFILE commits all uncommitted changes
      of NDB if this is an NDB table, its own changes if this is an NDB
      table, but does not affect other engines.
      Note: even though there is no "commit the full transaction at end"
      anymore, LOAD DATA INFILE stays disabled in routines (re-entrency
      problems per a comment of Pem).
      Note: ha_ndbcluster::has_transactions() does not give reliable results
      because it says "yes" even if transactions are disabled in this engine...
      e4d3595b