An error occurred fetching the project authors.
  1. 06 Jul, 2006 1 commit
    • acurtis@xiphis.org's avatar
      Bug#8706 · 86132d5d
      acurtis@xiphis.org authored
        "temporary table with data directory option fails"
        myisam should not use user-specified table name when creating
        temporary tables and use generated connection specific real name.
        Test included.
      86132d5d
  2. 27 Jun, 2006 1 commit
    • ingo@mysql.com's avatar
      Bug#11824 - internal /tmp/*.{MYD,MYI} files remain, causing subsequent queries to fail · e67bdaf6
      ingo@mysql.com authored
      Very complex select statements can create temporary tables
      that are too big to be represented as a MyISAM table.
      
      This was not checked at table creation time, but only at
      open time. The result was an attempt to delete the 
      "impossible" table.
      
      But if the server is built --with-raid, MyISAM tries to 
      open the table before deleting the files. It needs to find 
      out if the table uses the raid support and how many raid 
      chunks there are. This is done with an open "for repair",
      which will almost always succeed.
      
      But in this case we have an "impossible" table. The open
      failed. Hence the files were not deleted. Also the error
      message was a bit unspecific.
      
      I turned an open error in this situation into the assumption 
      of having no raid support on the table. Thus the normal data 
      file is tried to be deleted. This may however leave existing 
      raid chunks behind.
      
      I also added a check in mi_create() to prevent the creation
      of an "impossible" table. A more decriptive error message is
      given in this case.
      
      No test case. The required select statement is way too
      large for the test suite. I added a test script to the
      bug report.
      e67bdaf6
  3. 23 Jul, 2005 1 commit
  4. 30 Jun, 2005 2 commits
  5. 31 Mar, 2005 2 commits
  6. 04 Mar, 2005 3 commits
  7. 03 Mar, 2005 1 commit
  8. 02 Mar, 2005 1 commit
  9. 23 Nov, 2004 1 commit
  10. 22 Sep, 2004 1 commit
    • sergefp@mysql.com's avatar
      Fix for BUG#4785: · 6e0ba8e6
      sergefp@mysql.com authored
       * myisampack leaves key_file_length value from original table
       * myisamchk uses this value when calculating key file pointer length
      6e0ba8e6
  11. 01 May, 2004 1 commit
  12. 26 Mar, 2004 1 commit
  13. 12 Mar, 2004 1 commit
  14. 02 Feb, 2004 1 commit
  15. 04 Dec, 2003 1 commit
  16. 20 Aug, 2003 1 commit
  17. 03 Jun, 2003 1 commit
  18. 02 Mar, 2003 1 commit
  19. 21 Jan, 2003 1 commit
  20. 17 Jan, 2003 2 commits
  21. 27 Dec, 2002 1 commit
  22. 23 Oct, 2002 1 commit
  23. 10 Sep, 2002 1 commit
  24. 08 Aug, 2002 1 commit
    • monty@mashka.mysql.fi's avatar
      Lots of code fixes to the replication code (especially the binary logging and... · 2c4fa340
      monty@mashka.mysql.fi authored
      Lots of code fixes to the replication code (especially the binary logging and index log file handling)
      Fixed bugs in my last changeset that made MySQL hard to compile.
      Added mutex around some data that could cause table cache corruptions when using OPTIMIZE TABLE / REPAIR TABLE or automatic repair of MyISAM tables.
      Added mutex around some data in the slave start/stop code that could cause THD linked list corruptions
      Extended my_chsize() to allow one to specify a filler character.
      Extend vio_blocking to return the old state (This made some usage of this function much simpler)
      Added testing for some functions that they caller have got the required mutexes before calling the function.
      Use setrlimit() to ensure that we can write core file if one specifies --core-file.
      Added --slave-compressed-protocol
      Made 2 the minimum length for ft_min_word_len
      Added variables foreign_key_checks & unique_checks.
      Less logging from replication code (if not started with --log-warnings)
      Changed that SHOW INNODB STATUS requre the SUPER privilege
      More DBUG statements and a lot of new code comments
      2c4fa340
  25. 25 Jul, 2002 1 commit
  26. 24 Jul, 2002 1 commit
  27. 25 Apr, 2002 1 commit
  28. 20 Feb, 2002 1 commit
  29. 06 Dec, 2001 1 commit
  30. 06 Nov, 2001 1 commit
  31. 02 Oct, 2001 1 commit
    • monty@hundin.mysql.fi's avatar
      Cleaned up SSL documentation · 880026cc
      monty@hundin.mysql.fi authored
      Fixes for embedded server
      Made key_cache more configurable
      Fixed that one can change key blocksize in MyISAM
      A lot of optimizations to make MyISAM slightly faster
      880026cc
  32. 02 Sep, 2001 1 commit
  33. 26 Jun, 2001 1 commit
  34. 05 Jun, 2001 1 commit
  35. 31 May, 2001 1 commit
    • monty@hundin.mysql.fi's avatar
      Removed compiler warnings. · b7c3a281
      monty@hundin.mysql.fi authored
      Added preliminary handling of symlinks in MyISAM.
      When using myisamchk to check tables with --force, don't repair
      tables that are marked as 'not closed' if they are ok.
      Change fn_format() to use my_real_path and my_symlink
      b7c3a281