diff options
author | unknown <sanja@montyprogram.com> | 2012-02-22 10:38:28 +0200 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2012-02-22 10:38:28 +0200 |
commit | c299e027eeddc35e0197ebc70805e0a303a4b135 (patch) | |
tree | fbe47b9e9d1fea8c0183950d63894d1774ad8a6a /mysql-test/include/icp_tests.inc | |
parent | c9fc9f73170a8eb16ea968a2ea51b298eb5cdcfc (diff) | |
download | mariadb-git-c299e027eeddc35e0197ebc70805e0a303a4b135.tar.gz |
Changed names of statistic variables and counting matches instaed of rejected rows.
Diffstat (limited to 'mysql-test/include/icp_tests.inc')
-rw-r--r-- | mysql-test/include/icp_tests.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/include/icp_tests.inc b/mysql-test/include/icp_tests.inc index f412843ded0..e84b8622cdb 100644 --- a/mysql-test/include/icp_tests.inc +++ b/mysql-test/include/icp_tests.inc @@ -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; |