1. 15 Jan, 2006 1 commit
  2. 13 Jan, 2006 4 commits
  3. 12 Jan, 2006 4 commits
  4. 11 Jan, 2006 1 commit
  5. 10 Jan, 2006 3 commits
  6. 09 Jan, 2006 8 commits
  7. 08 Jan, 2006 2 commits
  8. 06 Jan, 2006 1 commit
  9. 04 Jan, 2006 2 commits
  10. 31 Dec, 2005 1 commit
  11. 29 Dec, 2005 1 commit
  12. 28 Dec, 2005 2 commits
  13. 27 Dec, 2005 3 commits
    • evgen@moonbone.local's avatar
      Fix bug#14583 · d91cbf34
      evgen@moonbone.local authored
      When InnoDB compares varchar field in ucs2 with given key using bin collation,
      it calls my_strnncollsp_ucs2_bin() to perform comparison.
      Because field length was lesser than length of key field should be padded
      with trailing spaces in order to get correct result. 
      Because  my_strnncollsp_ucs2_bin() was calling my_strnncollp_ucs2_bin(), which
      doesn't pads field, wrong comparison result was returned. This results in
      wrong result set.
      
      my_strnncollsp_ucs2_bin() now compares fields like my_strnncollsp_ucs2 do,
      but using binary collation.
      d91cbf34
    • ingo@mysql.com's avatar
      Merge mysql.com:/home/mydev/mysql-4.1 · 44ef4989
      ingo@mysql.com authored
      into  mysql.com:/home/mydev/mysql-4.1-bug5390
      44ef4989
    • ingo@mysql.com's avatar
      Merge mysql.com:/home/mydev/mysql-4.0 · 9014fef4
      ingo@mysql.com authored
      into  mysql.com:/home/mydev/mysql-4.0-bug5390
      9014fef4
  14. 23 Dec, 2005 1 commit
  15. 21 Dec, 2005 2 commits
  16. 20 Dec, 2005 2 commits
  17. 19 Dec, 2005 2 commits
    • bar@mysql.com's avatar
      Bug#15581: COALESCE function truncates mutli-byte TINYTEXT values · f206a123
      bar@mysql.com authored
      field.cc:
        BLOB variations have number-in-bytes limit,
        unlike CHAR/VARCHAR which have number-of-characters limits.
        A tinyblob column can store up to 255 bytes.
        In the case of basic Latin letters (which use 1 byte per character)
        we can store up to 255 characters in a tinyblob column.
        When passing an utf8 tinyblob column as an argument into
        a function (e.g. COALESCE) we need to reserve 3*255 bytes.
        I.e. multiply length in bytes to mbcharlen for the character set.
        Although in reality a tinyblob column can never be 3*255 bytes long,
        we need to set max_length to multiply to make fix_length_and_dec()
        of the function-caller (e.g. COALESCE) calculate the correct max_length
        for the column being created.
      
      ctype_utf8.result, ctype_utf8.test:
        Adding test case.
      f206a123
    • stewart@mysql.com's avatar
      Merge mysql.com:/home/stewart/Documents/MySQL/4.1/main · ffab9e11
      stewart@mysql.com authored
      into  mysql.com:/home/stewart/Documents/MySQL/4.1/cleanup
      ffab9e11