1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-22 17:44:29 +03:00
Files
mariadb/mysql-test/r
unknown 9699767c95 Fixed bug #34763.
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.


mysql-test/r/subselect3.result:
  Added test case for bug #34763.
mysql-test/t/subselect3.test:
  Added test case for bug #34763.
sql/item.cc:
  Fixed bug #34763.
  The Item_ref::fix_fields method has been modified to silently
  ignore not fixed outer references: by the definition, those
  references should be fixed later by the call to the
  fix_inner_refs function.
sql/item_subselect.cc:
  Fixed bug #34763.
  The Item_in_subselect::row_value_transformer method has been
  modified to eliminate assertion failure on not fixed outer
  references: by the definition those references are allowed in
  this context and should be fixed later by the call to the
  fix_inner_refs function.
2008-03-14 23:11:59 +04:00
..
2007-03-29 11:20:08 +02:00
2008-02-07 04:54:58 +04:00
2007-11-06 16:25:32 +02:00
2007-11-06 20:31:40 +02:00
2007-12-13 15:47:23 +04:00
2007-07-23 23:35:43 -07:00
2007-06-28 16:03:01 -07:00
2007-07-06 11:35:10 -07:00
2007-07-06 11:35:10 -07:00
2007-12-13 15:47:23 +04:00
2007-11-05 18:23:55 +04:00
2007-11-24 15:02:29 +04:00
2007-07-23 23:35:43 -07:00
2007-06-07 20:25:22 +02:00
2008-02-07 02:33:21 +04:00
2008-02-07 02:33:21 +04:00
2007-07-11 18:45:35 -07:00
2007-07-06 03:43:23 +05:00
2008-02-07 02:33:21 +04:00
2007-11-02 13:40:34 +03:00
2007-08-31 16:59:07 +05:00
2007-11-05 20:18:22 +01:00
2007-10-26 08:42:33 +02:00
2007-03-21 09:13:05 +01:00
2007-03-29 11:20:08 +02:00
2007-11-05 20:18:22 +01:00
2007-06-17 22:04:01 +02:00
2007-11-20 20:15:20 +04:00
2008-01-26 21:45:35 -08:00
2007-11-30 18:06:28 +01:00
2008-01-29 19:21:21 +08:00
2007-05-24 15:35:43 +05:00
2008-02-04 13:19:29 +01:00
2007-05-31 17:30:56 +05:00
2007-09-24 12:42:44 +02:00
2008-02-07 02:33:21 +04:00
2008-03-14 23:11:59 +04:00
2007-06-06 18:55:21 +05:00
2007-04-17 12:32:01 +02:00
2008-02-07 02:33:21 +04:00
2007-03-29 09:08:30 +05:00
2007-06-03 15:56:48 +04:00
2008-02-07 02:33:21 +04:00
2007-04-23 17:15:51 +03:00