1. 30 May, 2007 6 commits
  2. 29 May, 2007 7 commits
  3. 28 May, 2007 3 commits
  4. 27 May, 2007 3 commits
  5. 26 May, 2007 3 commits
  6. 25 May, 2007 3 commits
  7. 24 May, 2007 11 commits
  8. 23 May, 2007 4 commits
    • evgen@moonbone.local's avatar
      Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.0-opt · 55906317
      evgen@moonbone.local authored
      into  moonbone.local:/mnt/gentoo64/work/27563-bug-5.0-opt-mysql
      55906317
    • evgen@moonbone.local's avatar
      Bug#27563: Stored functions and triggers wasn't throwing an error when killed. · d1d58b5f
      evgen@moonbone.local authored
      If a stored function or a trigger was killed it had aborted but no error
      was thrown. This allows the caller statement to continue without a notice.
      This may lead to a wrong data being inserted/updated to/deleted as in such
      cases the correct result of a stored function isn't guaranteed. In the case
      of triggers it allows the caller statement to ignore kill signal and to
      waste time because of re-evaluation of triggers that always will fail
      because thd->killed flag is still on.
      
      Now the Item_func_sp::execute() and the sp_head::execute_trigger() functions
      check whether a function or a trigger were killed during execution and
      throws an appropriate error if so.
      Now the fill_record() function stops filling record if an error was reported
      through thd->net.report_error.
      d1d58b5f
    • mhansson@dl145s.mysql.com's avatar
      Bug #28250: Run-Time Check Failure #3 - The variable 'value' is · 85111f0a
      mhansson@dl145s.mysql.com authored
      being used without being def
      
      Inside method Item_func_unsigned::val_int, the variable value 
      can be returned without being initialized when the CAST argument
      is of type DECIMAL and has a NULL value. This gives a run-time 
      error when building debug binaries using Visual C++ 2005.
      
      Solution: Initialize value to 0
      85111f0a
    • evgen@moonbone.local's avatar
      sql_table.cc: · c65b5037
      evgen@moonbone.local authored
        After merge fix.
      c65b5037