Merge host.loc:/home/uchum/work/PA/5.0-opt-34763
into host.loc:/home/uchum/work/5.1-opt mysql-test/r/subselect3.result: Auto merged mysql-test/t/subselect3.test: Auto merged sql/item.cc: Auto merged sql/item_subselect.cc: Auto merged
This commit is contained in:
commit
eb2260dff0
@ -758,5 +758,16 @@ EXPLAIN SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
|
|||||||
id select_type table type possible_keys key key_len ref rows Extra
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
1 PRIMARY t1 ALL NULL NULL NULL NULL 4 Using where
|
1 PRIMARY t1 ALL NULL NULL NULL NULL 4 Using where
|
||||||
2 DEPENDENT SUBQUERY t2 unique_subquery PRIMARY PRIMARY 4 func 1 Using index; Using where
|
2 DEPENDENT SUBQUERY t2 unique_subquery PRIMARY PRIMARY 4 func 1 Using index; Using where
|
||||||
DROP TABLE t1;
|
DROP TABLE t1, t2;
|
||||||
|
CREATE TABLE t1 (a INT);
|
||||||
|
INSERT INTO t1 VALUES(1);
|
||||||
|
CREATE TABLE t2 (placeholder CHAR(11));
|
||||||
|
INSERT INTO t2 VALUES("placeholder");
|
||||||
|
SELECT ROW(1, 2) IN (SELECT t1.a, 2) FROM t1 GROUP BY t1.a;
|
||||||
|
ROW(1, 2) IN (SELECT t1.a, 2)
|
||||||
|
1
|
||||||
|
SELECT ROW(1, 2) IN (SELECT t1.a, 2 FROM t2) FROM t1 GROUP BY t1.a;
|
||||||
|
ROW(1, 2) IN (SELECT t1.a, 2 FROM t2)
|
||||||
|
1
|
||||||
|
DROP TABLE t1, t2;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
@ -586,6 +586,23 @@ SELECT a FROM t1 WHERE a NOT IN (65,66);
|
|||||||
SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
|
SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
|
||||||
EXPLAIN SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
|
EXPLAIN SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
|
||||||
|
|
||||||
DROP TABLE t1;
|
DROP TABLE t1, t2;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug #34763: item_subselect.cc:1235:Item_in_subselect::row_value_transformer:
|
||||||
|
# Assertion failed, unexpected error message:
|
||||||
|
# ERROR 1247 (42S22): Reference '<list ref>' not supported (forward
|
||||||
|
# reference in item list)
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (a INT);
|
||||||
|
INSERT INTO t1 VALUES(1);
|
||||||
|
|
||||||
|
CREATE TABLE t2 (placeholder CHAR(11));
|
||||||
|
INSERT INTO t2 VALUES("placeholder");
|
||||||
|
|
||||||
|
SELECT ROW(1, 2) IN (SELECT t1.a, 2) FROM t1 GROUP BY t1.a;
|
||||||
|
SELECT ROW(1, 2) IN (SELECT t1.a, 2 FROM t2) FROM t1 GROUP BY t1.a;
|
||||||
|
|
||||||
|
DROP TABLE t1, t2;
|
||||||
|
|
||||||
--echo End of 5.0 tests
|
--echo End of 5.0 tests
|
||||||
|
15
sql/item.cc
15
sql/item.cc
@ -5604,13 +5604,16 @@ bool Item_ref::fix_fields(THD *thd, Item **reference)
|
|||||||
DBUG_ASSERT(*ref);
|
DBUG_ASSERT(*ref);
|
||||||
/*
|
/*
|
||||||
Check if this is an incorrect reference in a group function or forward
|
Check if this is an incorrect reference in a group function or forward
|
||||||
reference. Do not issue an error if this is an unnamed reference inside an
|
reference. Do not issue an error if this is:
|
||||||
aggregate function.
|
1. outer reference (will be fixed later by the fix_inner_refs function);
|
||||||
|
2. an unnamed reference inside an aggregate function.
|
||||||
*/
|
*/
|
||||||
if (((*ref)->with_sum_func && name &&
|
if (!((*ref)->type() == REF_ITEM &&
|
||||||
!(current_sel->linkage != GLOBAL_OPTIONS_TYPE &&
|
((Item_ref *)(*ref))->ref_type() == OUTER_REF) &&
|
||||||
current_sel->having_fix_field)) ||
|
(((*ref)->with_sum_func && name &&
|
||||||
!(*ref)->fixed)
|
!(current_sel->linkage != GLOBAL_OPTIONS_TYPE &&
|
||||||
|
current_sel->having_fix_field)) ||
|
||||||
|
!(*ref)->fixed))
|
||||||
{
|
{
|
||||||
my_error(ER_ILLEGAL_REFERENCE, MYF(0),
|
my_error(ER_ILLEGAL_REFERENCE, MYF(0),
|
||||||
name, ((*ref)->with_sum_func?
|
name, ((*ref)->with_sum_func?
|
||||||
|
@ -1288,7 +1288,11 @@ Item_in_subselect::row_value_transformer(JOIN *join)
|
|||||||
Item *item_having_part2= 0;
|
Item *item_having_part2= 0;
|
||||||
for (uint i= 0; i < cols_num; i++)
|
for (uint i= 0; i < cols_num; i++)
|
||||||
{
|
{
|
||||||
DBUG_ASSERT(left_expr->fixed && select_lex->ref_pointer_array[i]->fixed);
|
DBUG_ASSERT(left_expr->fixed &&
|
||||||
|
select_lex->ref_pointer_array[i]->fixed ||
|
||||||
|
(select_lex->ref_pointer_array[i]->type() == REF_ITEM &&
|
||||||
|
((Item_ref*)(select_lex->ref_pointer_array[i]))->ref_type() ==
|
||||||
|
Item_ref::OUTER_REF));
|
||||||
if (select_lex->ref_pointer_array[i]->
|
if (select_lex->ref_pointer_array[i]->
|
||||||
check_cols(left_expr->element_index(i)->cols()))
|
check_cols(left_expr->element_index(i)->cols()))
|
||||||
DBUG_RETURN(RES_ERROR);
|
DBUG_RETURN(RES_ERROR);
|
||||||
@ -1362,7 +1366,11 @@ Item_in_subselect::row_value_transformer(JOIN *join)
|
|||||||
for (uint i= 0; i < cols_num; i++)
|
for (uint i= 0; i < cols_num; i++)
|
||||||
{
|
{
|
||||||
Item *item, *item_isnull;
|
Item *item, *item_isnull;
|
||||||
DBUG_ASSERT(left_expr->fixed && select_lex->ref_pointer_array[i]->fixed);
|
DBUG_ASSERT(left_expr->fixed &&
|
||||||
|
select_lex->ref_pointer_array[i]->fixed ||
|
||||||
|
(select_lex->ref_pointer_array[i]->type() == REF_ITEM &&
|
||||||
|
((Item_ref*)(select_lex->ref_pointer_array[i]))->ref_type() ==
|
||||||
|
Item_ref::OUTER_REF));
|
||||||
if (select_lex->ref_pointer_array[i]->
|
if (select_lex->ref_pointer_array[i]->
|
||||||
check_cols(left_expr->element_index(i)->cols()))
|
check_cols(left_expr->element_index(i)->cols()))
|
||||||
DBUG_RETURN(RES_ERROR);
|
DBUG_RETURN(RES_ERROR);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user