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
f20cab1a
Commit
f20cab1a
authored
Mar 07, 2014
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#13803810: TOO FEW ROWS RETURNED FOR RANGE ACCESS IN VARCHAR INDEX USING DATETIME VALUE
- Backport the testcase from mysql-5.6
parent
7af71b74
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
146 additions
and
0 deletions
+146
-0
mysql-test/r/range.result
mysql-test/r/range.result
+54
-0
mysql-test/r/range_mrr_icp.result
mysql-test/r/range_mrr_icp.result
+54
-0
mysql-test/t/range.test
mysql-test/t/range.test
+38
-0
No files found.
mysql-test/r/range.result
View file @
f20cab1a
...
@@ -2058,6 +2058,60 @@ pk
...
@@ -2058,6 +2058,60 @@ pk
5
5
DROP TABLE t1;
DROP TABLE t1;
#
#
# BUG#13803810: TOO FEW ROWS RETURNED FOR RANGE ACCESS IN
# VARCHAR INDEX USING DATETIME VALUE
CREATE TABLE t1 (a DATETIME);
INSERT INTO t1 VALUES ('2001-01-01 00:00:00');
INSERT INTO t1 VALUES ('2001-01-01 11:22:33');
CREATE TABLE t2 (b VARCHAR(64), KEY (b));
INSERT INTO t2 VALUES ('2001-01-01');
INSERT INTO t2 VALUES ('2001.01.01');
INSERT INTO t2 VALUES ('2001#01#01');
INSERT INTO t2 VALUES ('2001-01-01 00:00:00');
INSERT INTO t2 VALUES ('2001-01-01 11:22:33');
# range/ref access cannot be used for this query
EXPLAIN SELECT * FROM t2 WHERE b=CAST('2001-01-01' AS DATE);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 index b b 67 NULL 5 Using where; Using index
SELECT * FROM t2 WHERE b=CAST('2001-01-01' AS DATE);
b
2001#01#01
2001-01-01
2001-01-01 00:00:00
2001.01.01
# range/ref access cannot be used for any of the queries below.
# See BUG#13814468 about 'Range checked for each record'
EXPLAIN SELECT * FROM t1, t2 WHERE a=b ORDER BY BINARY a, BINARY b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using temporary; Using filesort
1 SIMPLE t2 ALL b NULL NULL NULL 5 Range checked for each record (index map: 0x1)
SELECT * FROM t1, t2 WHERE a=b ORDER BY BINARY a, BINARY b;
a b
2001-01-01 00:00:00 2001#01#01
2001-01-01 00:00:00 2001-01-01
2001-01-01 00:00:00 2001-01-01 00:00:00
2001-01-01 00:00:00 2001.01.01
2001-01-01 11:22:33 2001-01-01 11:22:33
EXPLAIN SELECT * FROM t1, t2 WHERE b=a ORDER BY BINARY a, BINARY b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using temporary; Using filesort
1 SIMPLE t2 ALL b NULL NULL NULL 5 Range checked for each record (index map: 0x1)
SELECT * FROM t1, t2 WHERE b=a ORDER BY BINARY a, BINARY b;
a b
2001-01-01 00:00:00 2001#01#01
2001-01-01 00:00:00 2001-01-01
2001-01-01 00:00:00 2001-01-01 00:00:00
2001-01-01 00:00:00 2001.01.01
2001-01-01 11:22:33 2001-01-01 11:22:33
DROP TABLE t1,t2;
#
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
#
#
create table t1(a int);
create table t1(a int);
...
...
mysql-test/r/range_mrr_icp.result
View file @
f20cab1a
...
@@ -2060,6 +2060,60 @@ pk
...
@@ -2060,6 +2060,60 @@ pk
5
5
DROP TABLE t1;
DROP TABLE t1;
#
#
# BUG#13803810: TOO FEW ROWS RETURNED FOR RANGE ACCESS IN
# VARCHAR INDEX USING DATETIME VALUE
CREATE TABLE t1 (a DATETIME);
INSERT INTO t1 VALUES ('2001-01-01 00:00:00');
INSERT INTO t1 VALUES ('2001-01-01 11:22:33');
CREATE TABLE t2 (b VARCHAR(64), KEY (b));
INSERT INTO t2 VALUES ('2001-01-01');
INSERT INTO t2 VALUES ('2001.01.01');
INSERT INTO t2 VALUES ('2001#01#01');
INSERT INTO t2 VALUES ('2001-01-01 00:00:00');
INSERT INTO t2 VALUES ('2001-01-01 11:22:33');
# range/ref access cannot be used for this query
EXPLAIN SELECT * FROM t2 WHERE b=CAST('2001-01-01' AS DATE);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 index b b 67 NULL 5 Using where; Using index
SELECT * FROM t2 WHERE b=CAST('2001-01-01' AS DATE);
b
2001#01#01
2001-01-01
2001-01-01 00:00:00
2001.01.01
# range/ref access cannot be used for any of the queries below.
# See BUG#13814468 about 'Range checked for each record'
EXPLAIN SELECT * FROM t1, t2 WHERE a=b ORDER BY BINARY a, BINARY b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using temporary; Using filesort
1 SIMPLE t2 ALL b NULL NULL NULL 5 Range checked for each record (index map: 0x1)
SELECT * FROM t1, t2 WHERE a=b ORDER BY BINARY a, BINARY b;
a b
2001-01-01 00:00:00 2001#01#01
2001-01-01 00:00:00 2001-01-01
2001-01-01 00:00:00 2001-01-01 00:00:00
2001-01-01 00:00:00 2001.01.01
2001-01-01 11:22:33 2001-01-01 11:22:33
EXPLAIN SELECT * FROM t1, t2 WHERE b=a ORDER BY BINARY a, BINARY b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using temporary; Using filesort
1 SIMPLE t2 ALL b NULL NULL NULL 5 Range checked for each record (index map: 0x1)
SELECT * FROM t1, t2 WHERE b=a ORDER BY BINARY a, BINARY b;
a b
2001-01-01 00:00:00 2001#01#01
2001-01-01 00:00:00 2001-01-01
2001-01-01 00:00:00 2001-01-01 00:00:00
2001-01-01 00:00:00 2001.01.01
2001-01-01 11:22:33 2001-01-01 11:22:33
DROP TABLE t1,t2;
#
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
#
#
create table t1(a int);
create table t1(a int);
...
...
mysql-test/t/range.test
View file @
f20cab1a
...
@@ -1648,6 +1648,44 @@ INSERT INTO t1 VALUES (1),(3),(5);
...
@@ -1648,6 +1648,44 @@ INSERT INTO t1 VALUES (1),(3),(5);
SELECT
*
FROM
t1
WHERE
pk
<>
3
OR
pk
<
4
;
SELECT
*
FROM
t1
WHERE
pk
<>
3
OR
pk
<
4
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# BUG#13803810: TOO FEW ROWS RETURNED FOR RANGE ACCESS IN
--
echo
# VARCHAR INDEX USING DATETIME VALUE
--
echo
CREATE
TABLE
t1
(
a
DATETIME
);
INSERT
INTO
t1
VALUES
(
'2001-01-01 00:00:00'
);
INSERT
INTO
t1
VALUES
(
'2001-01-01 11:22:33'
);
CREATE
TABLE
t2
(
b
VARCHAR
(
64
),
KEY
(
b
));
INSERT
INTO
t2
VALUES
(
'2001-01-01'
);
INSERT
INTO
t2
VALUES
(
'2001.01.01'
);
INSERT
INTO
t2
VALUES
(
'2001#01#01'
);
INSERT
INTO
t2
VALUES
(
'2001-01-01 00:00:00'
);
INSERT
INTO
t2
VALUES
(
'2001-01-01 11:22:33'
);
--
echo
--
echo
# range/ref access cannot be used for this query
--
echo
EXPLAIN
SELECT
*
FROM
t2
WHERE
b
=
CAST
(
'2001-01-01'
AS
DATE
);
SELECT
*
FROM
t2
WHERE
b
=
CAST
(
'2001-01-01'
AS
DATE
);
let
$query_ab
=
SELECT
*
FROM
t1
,
t2
WHERE
a
=
b
ORDER
BY
BINARY
a
,
BINARY
b
;
let
$query_ba
=
SELECT
*
FROM
t1
,
t2
WHERE
b
=
a
ORDER
BY
BINARY
a
,
BINARY
b
;
--
echo
--
echo
# range/ref access cannot be used for any of the queries below.
--
echo
# See BUG#13814468 about 'Range checked for each record'
--
echo
eval
EXPLAIN
$query_ab
;
eval
$query_ab
;
--
echo
eval
EXPLAIN
$query_ba
;
eval
$query_ba
;
--
echo
DROP
TABLE
t1
,
t2
;
--
echo
#
--
echo
#
--
echo
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
--
echo
# MDEV-5606: range optimizer: "x < y" is sargable, while "y > x" is not
--
echo
#
--
echo
#
...
...
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