mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Changed names of statistic variables and counting matches instaed of rejected rows.
This commit is contained in:
@ -862,15 +862,15 @@ CREATE TABLE t1 (
|
||||
INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
|
||||
|
||||
flush status;
|
||||
show status like "Handler_pushed%";
|
||||
show status like "Handler_icp%";
|
||||
|
||||
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
|
||||
|
||||
show status like "Handler_pushed%";
|
||||
show status like "Handler_icp%";
|
||||
|
||||
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
|
||||
|
||||
show status like "Handler_pushed%";
|
||||
show status like "Handler_icp%";
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
|
Reference in New Issue
Block a user