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
b71629a3
Commit
b71629a3
authored
Jun 30, 2010
by
Sergey Glukhov
Browse files
Options
Browse Files
Download
Plain Diff
5.1-bugteam->trunk-merge merge
parents
1ceb1d1b
a6220d82
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
1 deletion
+72
-1
mysql-test/suite/innodb/r/innodb_mysql.result
mysql-test/suite/innodb/r/innodb_mysql.result
+32
-0
mysql-test/suite/innodb/t/innodb_mysql.test
mysql-test/suite/innodb/t/innodb_mysql.test
+30
-0
sql/sql_select.cc
sql/sql_select.cc
+10
-1
No files found.
mysql-test/suite/innodb/r/innodb_mysql.result
View file @
b71629a3
...
...
@@ -2506,6 +2506,38 @@ AND f5 = 'abcdefghijklmnopwrst' AND f2 = 1221457 AND f4 = 0 ;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index_merge PRIMARY,idx1,idx2 idx2,idx1,PRIMARY 7,60,4 NULL 1 Using intersect(idx2,idx1,PRIMARY); Using where
DROP TABLE t1;
#
# Bug#51431 Wrong sort order after import of dump file
#
CREATE TABLE t1 (
f1 INT(11) NOT NULL,
f2 int(11) NOT NULL,
f3 int(11) NOT NULL,
f4 tinyint(1) NOT NULL,
PRIMARY KEY (f1),
UNIQUE KEY (f2, f3),
KEY (f4)
) ENGINE=InnoDB;
INSERT INTO t1 VALUES
(1,1,991,1), (2,1,992,1), (3,1,993,1), (4,1,994,1), (5,1,995,1),
(6,1,996,1), (7,1,997,1), (8,1,998,1), (10,1,999,1), (11,1,9910,1),
(16,1,9911,1), (17,1,9912,1), (18,1,9913,1), (19,1,9914,1), (20,1,9915,1),
(21,1,9916,1), (22,1,9917,1), (23,1,9918,1), (24,1,9919,1), (25,1,9920,1),
(26,1,9921,1), (27,1,9922,1);
FLUSH TABLES;
SELECT * FROM t1 WHERE f2 = 1 AND f4 = TRUE
ORDER BY f1 DESC LIMIT 5;
f1 f2 f3 f4
27 1 9922 1
26 1 9921 1
25 1 9920 1
24 1 9919 1
23 1 9918 1
EXPLAIN SELECT * FROM t1 WHERE f2 = 1 AND f4 = TRUE
ORDER BY f1 DESC LIMIT 5;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range f2,f4 f4 1 NULL 11 Using where
DROP TABLE t1;
End of 5.1 tests
#
# Test for bug #39932 "create table fails if column for FK is in different
...
...
mysql-test/suite/innodb/t/innodb_mysql.test
View file @
b71629a3
...
...
@@ -707,6 +707,36 @@ AND f5 = 'abcdefghijklmnopwrst' AND f2 = 1221457 AND f4 = 0 ;
DROP
TABLE
t1
;
--
echo
#
--
echo
# Bug#51431 Wrong sort order after import of dump file
--
echo
#
CREATE
TABLE
t1
(
f1
INT
(
11
)
NOT
NULL
,
f2
int
(
11
)
NOT
NULL
,
f3
int
(
11
)
NOT
NULL
,
f4
tinyint
(
1
)
NOT
NULL
,
PRIMARY
KEY
(
f1
),
UNIQUE
KEY
(
f2
,
f3
),
KEY
(
f4
)
)
ENGINE
=
InnoDB
;
INSERT
INTO
t1
VALUES
(
1
,
1
,
991
,
1
),
(
2
,
1
,
992
,
1
),
(
3
,
1
,
993
,
1
),
(
4
,
1
,
994
,
1
),
(
5
,
1
,
995
,
1
),
(
6
,
1
,
996
,
1
),
(
7
,
1
,
997
,
1
),
(
8
,
1
,
998
,
1
),
(
10
,
1
,
999
,
1
),
(
11
,
1
,
9910
,
1
),
(
16
,
1
,
9911
,
1
),
(
17
,
1
,
9912
,
1
),
(
18
,
1
,
9913
,
1
),
(
19
,
1
,
9914
,
1
),
(
20
,
1
,
9915
,
1
),
(
21
,
1
,
9916
,
1
),
(
22
,
1
,
9917
,
1
),
(
23
,
1
,
9918
,
1
),
(
24
,
1
,
9919
,
1
),
(
25
,
1
,
9920
,
1
),
(
26
,
1
,
9921
,
1
),
(
27
,
1
,
9922
,
1
);
FLUSH
TABLES
;
SELECT
*
FROM
t1
WHERE
f2
=
1
AND
f4
=
TRUE
ORDER
BY
f1
DESC
LIMIT
5
;
EXPLAIN
SELECT
*
FROM
t1
WHERE
f2
=
1
AND
f4
=
TRUE
ORDER
BY
f1
DESC
LIMIT
5
;
DROP
TABLE
t1
;
--
echo
End
of
5.1
tests
...
...
sql/sql_select.cc
View file @
b71629a3
...
...
@@ -13624,6 +13624,7 @@ test_if_skip_sort_order(JOIN_TAB *tab,ORDER *order,ha_rows select_limit,
uint
nr
;
key_map
keys
;
uint
best_key_parts
=
0
;
uint
saved_best_key_parts
=
0
;
int
best_key_direction
=
0
;
ha_rows
best_records
=
0
;
double
read_time
;
...
...
@@ -13784,6 +13785,7 @@ test_if_skip_sort_order(JOIN_TAB *tab,ORDER *order,ha_rows select_limit,
{
best_key
=
nr
;
best_key_parts
=
keyinfo
->
key_parts
;
saved_best_key_parts
=
used_key_parts
;
best_records
=
quick_records
;
is_best_covering
=
is_covering
;
best_key_direction
=
direction
;
...
...
@@ -13870,8 +13872,15 @@ test_if_skip_sort_order(JOIN_TAB *tab,ORDER *order,ha_rows select_limit,
*/
}
}
used_key_parts
=
best_key_parts
;
order_direction
=
best_key_direction
;
/*
saved_best_key_parts is actual number of used keyparts found by the
test_if_order_by_key function. It could differ from keyinfo->key_parts,
thus we have to restore it in case of desc order as it affects
QUICK_SELECT_DESC behaviour.
*/
used_key_parts
=
(
order_direction
==
-
1
)
?
saved_best_key_parts
:
best_key_parts
;
}
else
DBUG_RETURN
(
0
);
...
...
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