1. 30 May, 2007 1 commit
  2. 23 May, 2007 1 commit
  3. 22 May, 2007 1 commit
  4. 21 May, 2007 2 commits
  5. 18 May, 2007 9 commits
  6. 17 May, 2007 3 commits
  7. 16 May, 2007 5 commits
  8. 15 May, 2007 2 commits
  9. 14 May, 2007 2 commits
  10. 10 May, 2007 2 commits
  11. 09 May, 2007 3 commits
  12. 08 May, 2007 2 commits
  13. 07 May, 2007 2 commits
  14. 04 May, 2007 4 commits
  15. 03 May, 2007 1 commit
    • evgen@moonbone.local's avatar
      Bug#23656: Wrong conversion result of a DATETIME to integer using CAST function. · 7f9411c1
      evgen@moonbone.local authored
      The generic string to int conversion was used by the Item_func_signed and
      the Item_func_unsigned classes to convert DATE/DATETIME values to the
      SIGNED/UNSIGNED type. But this conversion produces wrong results for such
      values.
      
      Now if the item which result has to be converted can return its result as
      longlong then the item->val_int() method is used to allow the item to carry
      out the conversion itself and return the correct result.
      This condition is checked in the Item_func_signed::val_int() and the
      Item_func_unsigned::val_int() functions.
      7f9411c1