1. 24 Apr, 2007 2 commits
  2. 23 Apr, 2007 1 commit
  3. 20 Apr, 2007 1 commit
  4. 17 Apr, 2007 2 commits
  5. 14 Apr, 2007 1 commit
  6. 12 Apr, 2007 1 commit
  7. 11 Apr, 2007 4 commits
  8. 10 Apr, 2007 8 commits
  9. 07 Apr, 2007 2 commits
  10. 05 Apr, 2007 3 commits
  11. 04 Apr, 2007 4 commits
  12. 03 Apr, 2007 1 commit
    • igor@olga.mysql.com's avatar
      Fixed bug #27532: wrong results with ORDER/GROUP BY queries containing · 90aa05d2
      igor@olga.mysql.com authored
      IN/BETWEEN predicates in sorting expressions.
      Wrong results may occur when the select list contains an expression
      with IN/BETWEEN predicate that differs from a sorting expression by
      an additional NOT only.
       
      Added the method Item_func_opt_neg::eq to compare correctly expressions
      containing [NOT] IN/BETWEEN.
      The eq method inherited from the Item_func returns TRUE when comparing
      'a IN (1,2)' with 'a NOT IN (1,2)' that is not, of course, correct.  
      90aa05d2
  13. 02 Apr, 2007 2 commits
  14. 31 Mar, 2007 1 commit
  15. 30 Mar, 2007 2 commits
  16. 29 Mar, 2007 4 commits
  17. 28 Mar, 2007 1 commit
    • tsmith@siva.hindu.god's avatar
      Bug #26642: create index corrupts table definition in .frm · ecd22993
      tsmith@siva.hindu.god authored
      Thanks to Martin Friebe for finding and submitting a fix for this bug!
      
      A table with maximum number of key segments and maximum length key name
      would have a corrupted .frm file, due to an incorrect calculation of the
      complete key length.  Now the key length is computed correctly (I hope) :-)
      
      MyISAM would reject a table with the maximum number of keys and the maximum
      number of key segments in all keys.  It would allow one less than this total
      maximum.  Now MyISAM accepts a table defined with the maximum.  (This is a
      very minor issue.)
      ecd22993