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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7bdb1b1e
Commit
7bdb1b1e
authored
Dec 02, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/kostja/mysql/mysql-4.1-root
parents
524ab904
17119e6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
1 deletion
+24
-1
mysql-test/r/join_outer.result
mysql-test/r/join_outer.result
+1
-1
mysql-test/r/null.result
mysql-test/r/null.result
+11
-0
mysql-test/t/null.test
mysql-test/t/null.test
+11
-0
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+1
-0
No files found.
mysql-test/r/join_outer.result
View file @
7bdb1b1e
...
...
@@ -91,7 +91,7 @@ grp a c id a c d
NULL NULL NULL NULL NULL NULL
explain select t1.*,t2.* from t1,t2 where t1.a=t2.a and isnull(t2.a)=1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE
noticed after reading const tables
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE
explain select t1.*,t2.* from t1 left join t2 on t1.a=t2.a where isnull(t2.a)=1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 7
...
...
mysql-test/r/null.result
View file @
7bdb1b1e
...
...
@@ -142,3 +142,14 @@ a b c d
0 0000-00-00 00:00:00 0
0 0000-00-00 00:00:00 0
drop table t1;
create table t1 (a int not null, b int not null, index idx(a));
insert into t1 values
(1,1), (2,2), (3,3), (4,4), (5,5), (6,6),
(7,7), (8,8), (9,9), (10,10), (11,11), (12,12);
explain select * from t1 where a between 2 and 3;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range idx idx 4 NULL 2 Using where
explain select * from t1 where a between 2 and 3 or b is null;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range idx idx 4 NULL 2 Using where
drop table t1;
mysql-test/t/null.test
View file @
7bdb1b1e
...
...
@@ -86,3 +86,14 @@ INSERT INTO t1 (d) values (null),(null);
select
*
from
t1
;
drop
table
t1
;
#
# Test to check elimination of IS NULL predicate for a non-nullable attribute
# (bug #1990)
#
create
table
t1
(
a
int
not
null
,
b
int
not
null
,
index
idx
(
a
));
insert
into
t1
values
(
1
,
1
),
(
2
,
2
),
(
3
,
3
),
(
4
,
4
),
(
5
,
5
),
(
6
,
6
),
(
7
,
7
),
(
8
,
8
),
(
9
,
9
),
(
10
,
10
),
(
11
,
11
),
(
12
,
12
);
explain
select
*
from
t1
where
a
between
2
and
3
;
explain
select
*
from
t1
where
a
between
2
and
3
or
b
is
null
;
drop
table
t1
;
sql/item_cmpfunc.h
View file @
7bdb1b1e
...
...
@@ -746,6 +746,7 @@ class Item_func_isnull :public Item_bool_func
if
(
!
args
[
0
]
->
maybe_null
)
{
used_tables_cache
=
0
;
/* is always false */
const_item_cache
=
1
;
cached_value
=
(
longlong
)
0
;
}
else
...
...
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