1. 15 Jan, 2007 1 commit
  2. 14 Jan, 2007 1 commit
  3. 12 Jan, 2007 7 commits
  4. 11 Jan, 2007 12 commits
  5. 10 Jan, 2007 17 commits
  6. 09 Jan, 2007 2 commits
    • joerg@trift2.'s avatar
      support-files/MySQL-shared-compat.spec.sh : Dummy, irrelevant change -... · b63c167f
      joerg@trift2. authored
      support-files/MySQL-shared-compat.spec.sh  :    Dummy, irrelevant change - just trigger a new build.
      b63c167f
    • evgen@moonbone.local's avatar
      Fixed bug#16861: User defined variable can have a wrong value if a tmp table was · e098f736
      evgen@moonbone.local authored
      used.
      
      The Item::save_in_field() function is called from fill_record() to fill the 
      new row with data while execution of the CREATE TABLE ... SELECT statement.
      Item::save_in_field() calls val_xxx() methods in order to get values.
      val_xxx() methods do not take into account the result field. Due to this
      Item_func_set_user_var::val_xxx() methods returns values from the original
      table, not from the temporary one.
      
      The save_in_field() member function is added to the Item_func_set_user_var
      class. It detects whether the result field should be used and properly updates
      the value of the user variable.
      e098f736