Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
8b447a8a
Commit
8b447a8a
authored
Oct 20, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-4.1-opt
into rurik.mysql.com:/home/igor/mysql-4.1-opt
parents
0153d67e
d649efbb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+15
-0
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+17
-0
sql/item_subselect.cc
sql/item_subselect.cc
+3
-0
No files found.
mysql-test/r/subselect.result
View file @
8b447a8a
...
...
@@ -2982,3 +2982,18 @@ field1 field2
1 1
1 3
DROP TABLE t1, t2;
CREATE TABLE t1(a int, INDEX (a));
INSERT INTO t1 VALUES (1), (3), (5), (7);
INSERT INTO t1 VALUES (NULL);
CREATE TABLE t2(a int);
INSERT INTO t2 VALUES (1),(2),(3);
EXPLAIN SELECT a, a IN (SELECT a FROM t1) FROM t2;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t2 ALL NULL NULL NULL NULL 3
2 DEPENDENT SUBQUERY t1 index_subquery a a 5 func 2 Using index
SELECT a, a IN (SELECT a FROM t1) FROM t2;
a a IN (SELECT a FROM t1)
1 1
2 NULL
3 1
DROP TABLE t1,t2;
mysql-test/t/subselect.test
View file @
8b447a8a
...
...
@@ -1948,4 +1948,21 @@ SELECT field1, field2
DROP
TABLE
t1
,
t2
;
#
# Bug #23478: not top-level IN subquery returning a non-empty result set
# with possible NULL values by index access from the outer query
#
CREATE
TABLE
t1
(
a
int
,
INDEX
(
a
));
INSERT
INTO
t1
VALUES
(
1
),
(
3
),
(
5
),
(
7
);
INSERT
INTO
t1
VALUES
(
NULL
);
CREATE
TABLE
t2
(
a
int
);
INSERT
INTO
t2
VALUES
(
1
),(
2
),(
3
);
EXPLAIN
SELECT
a
,
a
IN
(
SELECT
a
FROM
t1
)
FROM
t2
;
SELECT
a
,
a
IN
(
SELECT
a
FROM
t1
)
FROM
t2
;
DROP
TABLE
t1
,
t2
;
# End of 4.1 tests
sql/item_subselect.cc
View file @
8b447a8a
...
...
@@ -610,6 +610,7 @@ double Item_in_subselect::val()
*/
DBUG_ASSERT
(
0
);
DBUG_ASSERT
(
fixed
==
1
);
null_value
=
0
;
if
(
exec
())
{
reset
();
...
...
@@ -625,6 +626,7 @@ double Item_in_subselect::val()
longlong
Item_in_subselect
::
val_int
()
{
DBUG_ASSERT
(
fixed
==
1
);
null_value
=
0
;
if
(
exec
())
{
reset
();
...
...
@@ -645,6 +647,7 @@ String *Item_in_subselect::val_str(String *str)
*/
DBUG_ASSERT
(
0
);
DBUG_ASSERT
(
fixed
==
1
);
null_value
=
0
;
if
(
exec
())
{
reset
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment