mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed LP bug #885168.
The call of the virtual function cancel_pushed_idx_cond in the code of the function test_if_skip_sort_order was misplaced when backporting the fix for bug 58816.
This commit is contained in:
@ -668,3 +668,32 @@ WHERE (6, 234) IN (
|
|||||||
|
|
||||||
DROP TABLE t1,t2,t3,t4;
|
DROP TABLE t1,t2,t3,t4;
|
||||||
set optimizer_switch= @tmp_778434;
|
set optimizer_switch= @tmp_778434;
|
||||||
|
|
||||||
|
--echo #
|
||||||
|
--echo # Bug#885168: ICP for one index + potential ORDER BY for another
|
||||||
|
--echo #
|
||||||
|
|
||||||
|
CREATE TABLE t1 (a varchar(64), b varchar(10), INDEX(a), INDEX(b)) ;
|
||||||
|
INSERT INTO t1 VALUES
|
||||||
|
('Ohio','Iowa'), ('k','d'), ('bdkpj','mbdkpjdanp'), ('d','xdmbdkpjda'),
|
||||||
|
('fkxdmbdkpjdanpje','o'), ('f','Pennsylvan'), ('Virginia','ei');
|
||||||
|
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=off';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=on';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -623,5 +623,37 @@ FROM t3 JOIN t4 ON t4.f11 = t3.f10
|
|||||||
f11 f10
|
f11 f10
|
||||||
DROP TABLE t1,t2,t3,t4;
|
DROP TABLE t1,t2,t3,t4;
|
||||||
set optimizer_switch= @tmp_778434;
|
set optimizer_switch= @tmp_778434;
|
||||||
|
#
|
||||||
|
# Bug#885168: ICP for one index + potential ORDER BY for another
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (a varchar(64), b varchar(10), INDEX(a), INDEX(b)) ;
|
||||||
|
INSERT INTO t1 VALUES
|
||||||
|
('Ohio','Iowa'), ('k','d'), ('bdkpj','mbdkpjdanp'), ('d','xdmbdkpjda'),
|
||||||
|
('fkxdmbdkpjdanpje','o'), ('f','Pennsylvan'), ('Virginia','ei');
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=off';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using where; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=on';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using index condition; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
DROP TABLE t1;
|
||||||
set optimizer_switch=@innodb_icp_tmp;
|
set optimizer_switch=@innodb_icp_tmp;
|
||||||
set storage_engine= @save_storage_engine;
|
set storage_engine= @save_storage_engine;
|
||||||
|
@ -629,5 +629,37 @@ FROM t3 JOIN t4 ON t4.f11 = t3.f10
|
|||||||
f11 f10
|
f11 f10
|
||||||
DROP TABLE t1,t2,t3,t4;
|
DROP TABLE t1,t2,t3,t4;
|
||||||
set optimizer_switch= @tmp_778434;
|
set optimizer_switch= @tmp_778434;
|
||||||
|
#
|
||||||
|
# Bug#885168: ICP for one index + potential ORDER BY for another
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (a varchar(64), b varchar(10), INDEX(a), INDEX(b)) ;
|
||||||
|
INSERT INTO t1 VALUES
|
||||||
|
('Ohio','Iowa'), ('k','d'), ('bdkpj','mbdkpjdanp'), ('d','xdmbdkpjda'),
|
||||||
|
('fkxdmbdkpjdanpje','o'), ('f','Pennsylvan'), ('Virginia','ei');
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=off';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using where; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=on';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using index condition; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
DROP TABLE t1;
|
||||||
set storage_engine= @save_storage_engine;
|
set storage_engine= @save_storage_engine;
|
||||||
set optimizer_switch=@maria_icp_tmp;
|
set optimizer_switch=@maria_icp_tmp;
|
||||||
|
@ -627,6 +627,38 @@ FROM t3 JOIN t4 ON t4.f11 = t3.f10
|
|||||||
f11 f10
|
f11 f10
|
||||||
DROP TABLE t1,t2,t3,t4;
|
DROP TABLE t1,t2,t3,t4;
|
||||||
set optimizer_switch= @tmp_778434;
|
set optimizer_switch= @tmp_778434;
|
||||||
|
#
|
||||||
|
# Bug#885168: ICP for one index + potential ORDER BY for another
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (a varchar(64), b varchar(10), INDEX(a), INDEX(b)) ;
|
||||||
|
INSERT INTO t1 VALUES
|
||||||
|
('Ohio','Iowa'), ('k','d'), ('bdkpj','mbdkpjdanp'), ('d','xdmbdkpjda'),
|
||||||
|
('fkxdmbdkpjdanpje','o'), ('f','Pennsylvan'), ('Virginia','ei');
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=off';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using where; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
SET SESSION optimizer_switch='index_condition_pushdown=on';
|
||||||
|
EXPLAIN
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 range b b 13 NULL 2 Using index condition; Rowid-ordered scan; Using filesort
|
||||||
|
SELECT * FROM t1
|
||||||
|
WHERE NOT(b = 'Texas') AND b BETWEEN 'wy' AND 'y' OR b = 'Pennsylvania'
|
||||||
|
ORDER BY a;
|
||||||
|
a b
|
||||||
|
d xdmbdkpjda
|
||||||
|
DROP TABLE t1;
|
||||||
drop table if exists t0, t1, t1i, t1m;
|
drop table if exists t0, t1, t1i, t1m;
|
||||||
#
|
#
|
||||||
# BUG#826935 Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' failed
|
# BUG#826935 Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' failed
|
||||||
|
@ -350,7 +350,7 @@ GROUP BY t2.pk
|
|||||||
);
|
);
|
||||||
id select_type table type possible_keys key key_len ref rows filtered Extra
|
id select_type table type possible_keys key key_len ref rows filtered Extra
|
||||||
1 PRIMARY t1 system NULL NULL NULL NULL 1 100.00
|
1 PRIMARY t1 system NULL NULL NULL NULL 1 100.00
|
||||||
2 SUBQUERY t2 ref int_key int_key 5 const 1 100.00 Using where; Using filesort
|
2 SUBQUERY t2 ref int_key int_key 5 const 1 100.00 Using index condition; Using where; Using filesort
|
||||||
Warnings:
|
Warnings:
|
||||||
Note 1003 select min(1) AS `MIN(t1.pk)` from `test`.`t1` where exists(select `test`.`t2`.`pk` from `test`.`t2` where isnull(`test`.`t2`.`int_key`) group by `test`.`t2`.`pk`)
|
Note 1003 select min(1) AS `MIN(t1.pk)` from `test`.`t1` where exists(select `test`.`t2`.`pk` from `test`.`t2` where isnull(`test`.`t2`.`int_key`) group by `test`.`t2`.`pk`)
|
||||||
DROP TABLE t1, t2;
|
DROP TABLE t1, t2;
|
||||||
|
@ -1666,7 +1666,7 @@ public:
|
|||||||
handler(handlerton *ht_arg, TABLE_SHARE *share_arg)
|
handler(handlerton *ht_arg, TABLE_SHARE *share_arg)
|
||||||
:table_share(share_arg), table(0),
|
:table_share(share_arg), table(0),
|
||||||
estimation_rows_to_insert(0), ht(ht_arg),
|
estimation_rows_to_insert(0), ht(ht_arg),
|
||||||
ref(0), in_range_check_pushed_down(FALSE),
|
ref(0), end_range(NULL), in_range_check_pushed_down(FALSE),
|
||||||
key_used_on_scan(MAX_KEY), active_index(MAX_KEY),
|
key_used_on_scan(MAX_KEY), active_index(MAX_KEY),
|
||||||
ref_length(sizeof(my_off_t)),
|
ref_length(sizeof(my_off_t)),
|
||||||
ft_handler(0), inited(NONE),
|
ft_handler(0), inited(NONE),
|
||||||
|
@ -17932,8 +17932,10 @@ check_reverse_order:
|
|||||||
condition are not relevant anymore
|
condition are not relevant anymore
|
||||||
*/
|
*/
|
||||||
if (tab->select && tab->select->pre_idx_push_select_cond)
|
if (tab->select && tab->select->pre_idx_push_select_cond)
|
||||||
|
{
|
||||||
tab->set_cond(tab->select->pre_idx_push_select_cond);
|
tab->set_cond(tab->select->pre_idx_push_select_cond);
|
||||||
|
tab->table->file->cancel_pushed_idx_cond();
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
TODO: update the number of records in join->best_positions[tablenr]
|
TODO: update the number of records in join->best_positions[tablenr]
|
||||||
*/
|
*/
|
||||||
@ -17994,6 +17996,9 @@ skipped_filesort:
|
|||||||
}
|
}
|
||||||
if (orig_cond_saved && !changed_key)
|
if (orig_cond_saved && !changed_key)
|
||||||
tab->set_cond(orig_cond);
|
tab->set_cond(orig_cond);
|
||||||
|
if (!no_changes && changed_key && table->file->pushed_idx_cond)
|
||||||
|
table->file->cancel_pushed_idx_cond();
|
||||||
|
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
|
|
||||||
use_filesort:
|
use_filesort:
|
||||||
@ -18004,10 +18009,7 @@ use_filesort:
|
|||||||
select->quick= save_quick;
|
select->quick= save_quick;
|
||||||
}
|
}
|
||||||
if (orig_cond_saved)
|
if (orig_cond_saved)
|
||||||
{
|
|
||||||
tab->table->file->cancel_pushed_idx_cond();
|
|
||||||
tab->set_cond(orig_cond);
|
tab->set_cond(orig_cond);
|
||||||
}
|
|
||||||
|
|
||||||
DBUG_RETURN(0);
|
DBUG_RETURN(0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user