1. 15 Aug, 2005 21 commits
  2. 14 Aug, 2005 3 commits
  3. 13 Aug, 2005 9 commits
  4. 12 Aug, 2005 7 commits
    • serg@sergbook.mysql.com's avatar
      merged · d42f973b
      serg@sergbook.mysql.com authored
      d42f973b
    • serg@sergbook.mysql.com's avatar
      BUG#12162 - one can start two transactions with the same XID. · f5ff607c
      serg@sergbook.mysql.com authored
      Now we keep all active XID's in a hash
      f5ff607c
    • jimw@mysql.com's avatar
      Make sure to clean up temporary files in myisampack even when the · f693d22b
      jimw@mysql.com authored
      -T option is used. (Bug #12235)
      f693d22b
    • evgen@moonbone.local's avatar
      Fix bug #12298 Typo in timestampdiff() function name results in erroneous · 0f9b9829
      evgen@moonbone.local authored
      view being created.
      
      Item_func_timestamp_diff::func_name() were returning function name as
      "timestamp_diff" thus when view was executed function parameters wasn't 
      properly recognized and error was raised.
      0f9b9829
    • timour@mysql.com's avatar
      WL#2486 · 8f115aaf
      timour@mysql.com authored
      Disabled one test case because it is still a problem due to the fix for WL#2486.
      Pushed to enable code review.
      8f115aaf
    • timour@mysql.com's avatar
      Merge mysql.com:/home/timka/mysql/src/5.0-virgin · 354ce1d0
      timour@mysql.com authored
      into  mysql.com:/home/timka/mysql/src/5.0-2486-merge
      354ce1d0
    • timour@mysql.com's avatar
      Implementation of WL#2486 - · a247282a
      timour@mysql.com authored
      "Process NATURAL and USING joins according to SQL:2003".
      
      * Some of the main problems fixed by the patch:
        - in "select *" queries the * expanded correctly according to
          ANSI for arbitrary natural/using joins
        - natural/using joins are correctly transformed into JOIN ... ON
          for any number/nesting of the joins.
        - column references are correctly resolved against natural joins
          of any nesting and combined with arbitrary other joins.
      
      * This patch also contains a fix for name resolution of items
        inside the ON condition of JOIN ... ON - in this case items must
        be resolved only against the JOIN operands. To support such
        'local' name resolution, the patch introduces a stack of
        name resolution contexts used at parse time.
      
      NOTICE:
      - This patch is not complete in the sense that
        - there are 2 test cases that still do not pass -
          one in join.test, one in select.test. Both are marked
          with a comment "TODO: WL#2486".
        - it does not include a new test specific for the task
      a247282a