1. 12 Sep, 2005 26 commits
  2. 11 Sep, 2005 6 commits
  3. 10 Sep, 2005 8 commits
    • unknown's avatar
      Merge mysql.com:/users/lthalmann/bk/mysql-4.1-one_shot · 79c1413a
      unknown authored
      into  mysql.com:/users/lthalmann/bk/mysql-5.0
      
      
      mysql-test/r/insert_select.result:
        Auto merged
      mysql-test/t/insert_select.test:
        Auto merged
      sql/sql_parse.cc:
        Manual marge
      79c1413a
    • unknown's avatar
      Removed redundant reset_one_shot_variables calls · 5bfcf9b8
      unknown authored
      
      sql/sql_parse.cc:
        Optimization, this reset is executed below anyway
      5bfcf9b8
    • unknown's avatar
      options.cc: · 45b79ddd
      unknown authored
        Fix typo.
      
      
      server-tools/instance-manager/options.cc:
        Fix typo.
      45b79ddd
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0 · 21d6664a
      unknown authored
      into  eel.(none):/home/jonas/src/mysql-5.0-push
      
      21d6664a
    • unknown's avatar
      Merge paul@bk-internal.mysql.com:/home/bk/mysql-5.0 · 23149c80
      unknown authored
      into  snake-hub.snake.net:/src/extern/MySQL/bk/mysql-5.0
      
      23149c80
    • unknown's avatar
      comp_err.c: · 861e302a
      unknown authored
        Fix some comments.
      
      
      extra/comp_err.c:
        Fix some comments.
      861e302a
    • unknown's avatar
      Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-4.1 · 55964399
      unknown authored
      into  a193-229-222-105.elisa-laajakaista.fi:/home/my/bk/mysql-4.1
      
      55964399
    • unknown's avatar
      Fix for BUG#12943. · 58cc5073
      unknown authored
      The problem was that in the first production in rule 'join_table', that
      processes simple cross joins, the parser was processing the second join operand
      before the first one due to unspecified priorities of JOINs. As a result in the
      case of cross joins the parser constructed a tree with incorrect nesting:
      the expression "t1 join t2 join t3 on some_cond" was interpreted as
      "t1 join (t2 join t3 on some_cond)" instead of
      "(t1 join t2) join t3 on some_cond".
      Because of this incorrect nesting the method make_join_on_context picked an
      incorrect table as the first table of the name resolution context.
      
      The solution assignes correct priorities to the related production.
      
      
      mysql-test/r/select.result:
        Added test for BUG#12943.
      mysql-test/t/select.test:
        Added test for BUG#12943.
      sql/sql_parse.cc:
        Fixed typo.
      sql/sql_yacc.yy:
        Provide explicit priorities of the JOIN operator and the 'table_ref' rule,
        to enforce left-associativity of [INNER | CROSS] JOIN.
      58cc5073