summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam_icp.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2012-04-17 20:25:03 +0200
committerSergei Golubchik <sergii@pisem.net>2012-04-17 20:25:03 +0200
commit580eca69ae0fd5186231ef318964349ffff6c499 (patch)
tree6bbe7033503fd3f46af32e3316dfb9c675b0a091 /mysql-test/r/myisam_icp.result
parent81e3e7d4a26363153ba6e0877053ed0c2cf5a97a (diff)
downloadmariadb-git-580eca69ae0fd5186231ef318964349ffff6c499.tar.gz
typo fixed: space in the status variable name
Diffstat (limited to 'mysql-test/r/myisam_icp.result')
-rw-r--r--mysql-test/r/myisam_icp.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/myisam_icp.result b/mysql-test/r/myisam_icp.result
index f1a2af264a3..a8355db55e0 100644
--- a/mysql-test/r/myisam_icp.result
+++ b/mysql-test/r/myisam_icp.result
@@ -822,21 +822,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
flush status;
show status like "Handler_icp%";
Variable_name Value
-Handler_icp_attempts 0
+Handler_icp_attempts 0
Handler_icp_match 0
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
c1 c2
4 4
show status like "Handler_icp%";
Variable_name Value
-Handler_icp_attempts 2
+Handler_icp_attempts 2
Handler_icp_match 1
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
c1 c2
4 4
show status like "Handler_icp%";
Variable_name Value
-Handler_icp_attempts 2
+Handler_icp_attempts 2
Handler_icp_match 1
DROP TABLE t1;
drop table if exists t0, t1, t1i, t1m;