An error occurred fetching the project authors.
  1. 23 Jun, 2005 1 commit
    • igor@rurik.mysql.com's avatar
      func_str.result, func_str.test: · c73c2af6
      igor@rurik.mysql.com authored
        Added a test case for bug #10124.
      sql_select.h, item_subselect.cc, sql_select.cc:
        Fixed bug #10124.
        The copy method of the store_key classes can return
        STORE_KEY_OK=0, STORE_KEY_FATAL=1, STORE_KEY_CONV=2 now.
      field.cc:
        Fixed bug #10124.
        When ussuing a warning the store methods return 2 instead of 1 now.
      c73c2af6
  2. 22 Jun, 2005 1 commit
  3. 19 Jun, 2005 1 commit
    • svoj@mysql.com's avatar
      WL#2286 - Compile MySQL w/YASSL support · 7660f609
      svoj@mysql.com authored
      Fix for yaSSL link failures with Forte Developer 7, MIPSpro Compilers, Compaq C++.
      These compilers have problem with implicit template instantiation in archives
      (libyassl.a, libtaocrypt.a). Instantiate templates explicitly.
      
      Fix for yaSSL link failure on powermacg5 (gcc 3.3). When -O3 is specified gcc inlines
      __cxa_pure_virtual. This is wrong behavior, __cxa_pure_virtual must never be inlined.
      7660f609
  4. 15 Jun, 2005 1 commit
    • igor@rurik.mysql.com's avatar
      cast.result, cast.test: · 316815f4
      igor@rurik.mysql.com authored
        Added test case for bug #11283.
      field.h, field.cc:
        Fixed bug #11283: wrong conversion from varchar to decimal.
        Added methods Field_string::val_decimal,
        Field_varstring::val_decimal, Field_blob::val_decimal.
        They are not inherited from the base class Field_longstr
        anymore.
      316815f4
  5. 13 Jun, 2005 1 commit
  6. 08 Jun, 2005 1 commit
  7. 05 Jun, 2005 1 commit
  8. 03 Jun, 2005 2 commits
    • monty@mysql.com's avatar
      Move USE_PRAGMA_IMPLEMENTATION to proper place · 29fd1f2f
      monty@mysql.com authored
      Ensure that 'null_value' is not accessed before val() is called in FIELD() functions
      Fixed initialization of key maps. This fixes some problems with keys when you have more than 64 keys
      Fixed that ROLLUP don't always create a temporary table. This fix ensures that func_gconcat.test results are now predictable
      29fd1f2f
    • bar@mysql.com's avatar
      ctype_utf8.result, ctype_utf8.test: · 1002a941
      bar@mysql.com authored
        adding test
      field.cc:
        bug#10714 Inserting double value into utf8 column crashes server:
        sprintf was executed with too big length, which caused
        crash on some Windows platforms.
      1002a941
  9. 02 Jun, 2005 1 commit
    • kent@mysql.com's avatar
      tztime.cc: · bd48eed9
      kent@mysql.com authored
        Set #pragma implementation" earlier
      Many files:
        Need to include <my_global.h> before #ifdef USE_PRAGMA_IMPLEMENTATION
      bd48eed9
  10. 26 May, 2005 2 commits
  11. 18 May, 2005 1 commit
  12. 13 May, 2005 1 commit
  13. 12 May, 2005 1 commit
  14. 05 May, 2005 1 commit
  15. 29 Apr, 2005 1 commit
  16. 14 Apr, 2005 1 commit
  17. 12 Apr, 2005 2 commits
  18. 09 Apr, 2005 1 commit
  19. 06 Apr, 2005 2 commits
  20. 03 Apr, 2005 1 commit
  21. 01 Apr, 2005 1 commit
    • monty@mysql.com's avatar
      Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902) · 201ee3eb
      monty@mysql.com authored
      CAST() now produces warnings when casting a wrong INTEGER or CHAR values. This also applies to implicite string to number casts. (Bug #5912)
      ALTER TABLE now fails in STRICT mode if it generates warnings.
      Inserting a zero date in a DATE, DATETIME or TIMESTAMP column during TRADITIONAL mode now produces an error. (Bug #5933)
      201ee3eb
  22. 31 Mar, 2005 1 commit
  23. 30 Mar, 2005 2 commits
  24. 28 Mar, 2005 1 commit
  25. 23 Mar, 2005 1 commit
  26. 22 Mar, 2005 1 commit
  27. 19 Mar, 2005 1 commit
  28. 17 Mar, 2005 1 commit
    • serg@serg.mylan's avatar
      Field::quote_data(): · 376a4ee0
      serg@serg.mylan authored
        don't call escape_string_for_mysql() unnecesary
        don't overwrite local buffer
      escape_string_for_mysql():
        take a length of the destination buffer as an argument
      376a4ee0
  29. 16 Mar, 2005 1 commit
  30. 13 Mar, 2005 1 commit
    • konstantin@mysql.com's avatar
      WL#926 "SUM(DISTINCT) and AVG(DISTINCT)": improvement of SUM(DISTINCT) and · 983c75f0
      konstantin@mysql.com authored
       implementation of AVG(DISTINCT) which utilizes the approach with Fields.
      The patch implemented in October is portede to the up-to-date tree 
      containing DECIMAL type.
      Tests for AVG(DISTINCT) (although there is not much to test provided
      that SUM(DISTINCT) works), cleanups for COUNT(DISTINCT) and GROUP_CONCAT()
      will follow in another changeset.
      983c75f0
  31. 10 Mar, 2005 1 commit
  32. 07 Mar, 2005 1 commit
  33. 25 Feb, 2005 1 commit
  34. 22 Feb, 2005 2 commits
    • monty@mysql.com's avatar
      Backport my_strntod() from 5.0 · e2dc9b40
      monty@mysql.com authored
      Change string->float conversion to delay division as long as possible.
      This gives us more exact integer->float conversion for numbers of type '123.45E+02' (Bug #7740)
      
      e2dc9b40
    • bar@mysql.com's avatar
      field.cc: · c709ad87
      bar@mysql.com authored
        optimize test_if_minus() when not UCS2 support is compiled.
      c709ad87