1. 13 Dec, 2007 1 commit
  2. 10 Dec, 2007 1 commit
  3. 06 Dec, 2007 1 commit
  4. 05 Dec, 2007 1 commit
  5. 01 Dec, 2007 2 commits
  6. 30 Nov, 2007 5 commits
  7. 29 Nov, 2007 2 commits
  8. 27 Nov, 2007 1 commit
  9. 26 Nov, 2007 1 commit
  10. 24 Nov, 2007 1 commit
  11. 21 Nov, 2007 1 commit
  12. 20 Nov, 2007 1 commit
  13. 19 Nov, 2007 1 commit
    • holyfoot/hf@mysql.com/hfmain.(none)'s avatar
      Bug #30284 spatial key corruption. · 140dd4f3
      holyfoot/hf@mysql.com/hfmain.(none) authored
      SPATIAL key is fine actually, but the chk_key() function
      mistakenly returns error. It tries to compare checksums
      of btree and SPATIAL keys while the checksum for the SPATIAL isn't
      calculated (always 0). Same thing with FULLTEXT keys is handled
      using full_text_keys counter, so fixed by counting both
      SPATIAL and FULLTEXT keys in that counter.
      140dd4f3
  14. 17 Nov, 2007 1 commit
  15. 16 Nov, 2007 2 commits
  16. 14 Nov, 2007 5 commits
  17. 13 Nov, 2007 2 commits
  18. 12 Nov, 2007 7 commits
  19. 10 Nov, 2007 1 commit
  20. 09 Nov, 2007 1 commit
    • svoj@mysql.com/june.mysql.com's avatar
      BUG#29083 - test suite times out on OS X 64bit - also in older releases · c6abad79
      svoj@mysql.com/june.mysql.com authored
      The "mysql client in mysqld"(which is used by
      replication and federated) should use alarms instead of setting
      socket timeout value if the rest of the server uses alarm. By
      always calling 'my_net_set_write_timeout'
      or 'net_set_read_timeout' when changing the timeout value(s), the
      selection whether to use alarms or timeouts will be handled by
      ifdef's in those two functions.
      
      This is minimal backport of patch for BUG#26664, which was pushed
      to 5.0 and up.
      
      Affects 4.1 only.
      c6abad79
  21. 08 Nov, 2007 1 commit
  22. 07 Nov, 2007 1 commit
    • kaa@polly.(none)'s avatar
      Fix for bug #32103: optimizer crash when join on int and mediumint with · f1a3c364
      kaa@polly.(none) authored
      variable in where clause.
      
      Problem: the new_item() method of Item_uint used an incorrect
      constructor. "new Item_uint(name, max_length)" calls
      Item_uint::Item_uint(const char *str_arg, uint length) which assumes the
      first argument to be the string representation of the value, not the
      item's name. This could result in either a server crash or incorrect
      results depending on usage scenarios.
      
      Fixed by using the correct constructor in new_item():
      Item_uint::Item_uint(const char *str_arg, longlong i, uint length).
      f1a3c364