1. 26 Mar, 2008 3 commits
    • gshchepa/uchum@host.loc's avatar
      Merge host.loc:/home/uchum/work/5.0-opt · 57afe19c
      gshchepa/uchum@host.loc authored
      into  host.loc:/home/uchum/work/5.1-opt
      57afe19c
    • gshchepa/uchum@host.loc's avatar
      Merge host.loc:/home/uchum/work/5.0-opt-35193 · 792074bf
      gshchepa/uchum@host.loc authored
      into  host.loc:/home/uchum/work/5.0-opt
      792074bf
    • gshchepa/uchum@host.loc's avatar
      Fixed bug #35193. · 2dcec449
      gshchepa/uchum@host.loc authored
      View definition as SELECT ... FROM DUAL WHERE ... has
      valid syntax, but use of such view in SELECT or
      SHOW CREATE VIEW syntax causes unexpected syntax error.
      
      Server omits FROM DUAL clause when storing view body
      string in a .frm file for further evaluation.
      However, syntax of SELECT-witout-FROM query is more
      restrictive than SELECT FROM DUAL syntax, and doesn't
      allow the WHERE clause.
      
      NOTE: this syntax difference is not documented.
      
      
      View registration procedure has been modified to
      preserve original structure of view's body.
      2dcec449
  2. 25 Mar, 2008 6 commits
  3. 24 Mar, 2008 2 commits
  4. 23 Mar, 2008 5 commits
  5. 21 Mar, 2008 4 commits
  6. 19 Mar, 2008 10 commits
  7. 18 Mar, 2008 1 commit
  8. 14 Mar, 2008 2 commits
    • gshchepa/uchum@host.loc's avatar
      Fixed bug #34763. · cf90fb55
      gshchepa/uchum@host.loc authored
      Queries like:
      
        SELECT ROW(1, 2) IN (SELECT t1.a, 2)
          FROM t1 GROUP BY t1.a
      
      or 
      
        SELECT ROW(1, 2) IN (SELECT t1.a, 2 FROM t2)
          FROM t1 GROUP BY t1.a
      
      lead to assertion failure in the
      Item_in_subselect::row_value_transformer method in debugging
      build, or to unexpected error message in release build:
      
        ERROR 1247 (42S22): Reference '<list ref>' not supported (forward
                            reference in item list)
      
      Unexpected error message and assertion failure have been
      eliminated.
      cf90fb55
    • gluh@mysql.com/eagle.(none)'s avatar
      Bug#35108 SELECT FROM REFERENTIAL_CONSTRAINTS crashes · 2f719d02
      gluh@mysql.com/eagle.(none) authored
      referenced_key_name field can be uninitialized in the case when
      referenced table is dropped.
      Added codition which allows to handle this situation.
      2f719d02
  9. 13 Mar, 2008 2 commits
  10. 12 Mar, 2008 5 commits