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
580eca69
Commit
580eca69
authored
Apr 17, 2012
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo fixed: space in the status variable name
parent
81e3e7d4
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
21 deletions
+21
-21
mysql-test/r/innodb_icp,innodb_plugin.rdiff
mysql-test/r/innodb_icp,innodb_plugin.rdiff
+4
-4
mysql-test/r/innodb_icp.result
mysql-test/r/innodb_icp.result
+3
-3
mysql-test/r/join_cache.result
mysql-test/r/join_cache.result
+4
-4
mysql-test/r/maria_icp.result
mysql-test/r/maria_icp.result
+3
-3
mysql-test/r/myisam_icp.result
mysql-test/r/myisam_icp.result
+3
-3
mysql-test/r/status.result
mysql-test/r/status.result
+2
-2
mysql-test/r/status_user.result
mysql-test/r/status_user.result
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
mysql-test/r/innodb_icp,innodb_plugin.rdiff
View file @
580eca69
...
@@ -31,18 +31,18 @@
...
@@ -31,18 +31,18 @@
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
-Handler_icp_attempts
2
-Handler_icp_attempts 2
-Handler_icp_match 1
-Handler_icp_match 1
+Handler_icp_attempts
0
+Handler_icp_attempts 0
+Handler_icp_match 0
+Handler_icp_match 0
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
-Handler_icp_attempts
2
-Handler_icp_attempts 2
-Handler_icp_match 1
-Handler_icp_match 1
+Handler_icp_attempts
0
+Handler_icp_attempts 0
+Handler_icp_match 0
+Handler_icp_match 0
DROP TABLE t1;
DROP TABLE t1;
#
#
...
...
mysql-test/r/innodb_icp.result
View file @
580eca69
...
@@ -818,21 +818,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
...
@@ -818,21 +818,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
flush status;
flush status;
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
DROP TABLE t1;
DROP TABLE t1;
#
#
...
...
mysql-test/r/join_cache.result
View file @
580eca69
...
@@ -3522,7 +3522,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -3522,7 +3522,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using join buffer (flat, BKA join); Key-ordered Rowid-ordered scan
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using join buffer (flat, BKA join); Key-ordered Rowid-ordered scan
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
20
Handler_icp_attempts 20
Handler_icp_match 4
Handler_icp_match 4
set join_cache_level=6;
set join_cache_level=6;
select t2.f1, t2.f2, t2.f3 from t1,t2
select t2.f1, t2.f2, t2.f3 from t1,t2
...
@@ -3539,7 +3539,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -3539,7 +3539,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using join buffer (flat, BKA join); Key-ordered Rowid-ordered scan
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using join buffer (flat, BKA join); Key-ordered Rowid-ordered scan
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
40
Handler_icp_attempts 40
Handler_icp_match 8
Handler_icp_match 8
set join_cache_level=7;
set join_cache_level=7;
select t2.f1, t2.f2, t2.f3 from t1,t2
select t2.f1, t2.f2, t2.f3 from t1,t2
...
@@ -3556,7 +3556,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -3556,7 +3556,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using where; Using join buffer (flat, BKAH join); Key-ordered Rowid-ordered scan
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using where; Using join buffer (flat, BKAH join); Key-ordered Rowid-ordered scan
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
60
Handler_icp_attempts 60
Handler_icp_match 12
Handler_icp_match 12
set join_cache_level=8;
set join_cache_level=8;
select t2.f1, t2.f2, t2.f3 from t1,t2
select t2.f1, t2.f2, t2.f3 from t1,t2
...
@@ -3573,7 +3573,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -3573,7 +3573,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using where; Using join buffer (flat, BKAH join); Key-ordered Rowid-ordered scan
1 SIMPLE t2 ref f1 f1 4 test.t1.f1 3 Using index condition(BKA); Using where; Using join buffer (flat, BKAH join); Key-ordered Rowid-ordered scan
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
80
Handler_icp_attempts 80
Handler_icp_match 16
Handler_icp_match 16
drop table t1,t2;
drop table t1,t2;
set join_cache_level=default;
set join_cache_level=default;
...
...
mysql-test/r/maria_icp.result
View file @
580eca69
...
@@ -824,21 +824,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
...
@@ -824,21 +824,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
flush status;
flush status;
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
DROP TABLE t1;
DROP TABLE t1;
set storage_engine= @save_storage_engine;
set storage_engine= @save_storage_engine;
...
...
mysql-test/r/myisam_icp.result
View file @
580eca69
...
@@ -822,21 +822,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
...
@@ -822,21 +822,21 @@ INSERT INTO t1 VALUES ('3', '3'),('4','4'),('5','5');
flush status;
flush status;
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
SELECT * FROM t1 FORCE INDEX(c1) WHERE (c1='3' or c1='4') and c1 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
SELECT * FROM t1 WHERE (c2='3' or c2='4') and c2 % 2 = 0 ;
c1 c2
c1 c2
4 4
4 4
show status like "Handler_icp%";
show status like "Handler_icp%";
Variable_name Value
Variable_name Value
Handler_icp_attempts
2
Handler_icp_attempts 2
Handler_icp_match 1
Handler_icp_match 1
DROP TABLE t1;
DROP TABLE t1;
drop table if exists t0, t1, t1i, t1m;
drop table if exists t0, t1, t1i, t1m;
...
...
mysql-test/r/status.result
View file @
580eca69
...
@@ -275,7 +275,7 @@ Variable_name Value
...
@@ -275,7 +275,7 @@ Variable_name Value
Handler_commit 0
Handler_commit 0
Handler_delete 0
Handler_delete 0
Handler_discover 0
Handler_discover 0
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
Handler_mrr_init 0
Handler_mrr_init 0
Handler_mrr_key_refills 0
Handler_mrr_key_refills 0
...
@@ -316,7 +316,7 @@ Variable_name Value
...
@@ -316,7 +316,7 @@ Variable_name Value
Handler_commit 0
Handler_commit 0
Handler_delete 0
Handler_delete 0
Handler_discover 0
Handler_discover 0
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
Handler_mrr_init 0
Handler_mrr_init 0
Handler_mrr_key_refills 0
Handler_mrr_key_refills 0
...
...
mysql-test/r/status_user.result
View file @
580eca69
...
@@ -100,7 +100,7 @@ Variable_name Value
...
@@ -100,7 +100,7 @@ Variable_name Value
Handler_commit 19
Handler_commit 19
Handler_delete 1
Handler_delete 1
Handler_discover 0
Handler_discover 0
Handler_icp_attempts
0
Handler_icp_attempts 0
Handler_icp_match 0
Handler_icp_match 0
Handler_mrr_init 0
Handler_mrr_init 0
Handler_mrr_key_refills 0
Handler_mrr_key_refills 0
...
...
sql/mysqld.cc
View file @
580eca69
...
@@ -6935,7 +6935,7 @@ SHOW_VAR status_vars[]= {
...
@@ -6935,7 +6935,7 @@ SHOW_VAR status_vars[]= {
{
"Handler_delete"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_delete_count
),
SHOW_LONG_STATUS
},
{
"Handler_delete"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_delete_count
),
SHOW_LONG_STATUS
},
{
"Handler_discover"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_discover_count
),
SHOW_LONG_STATUS
},
{
"Handler_discover"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_discover_count
),
SHOW_LONG_STATUS
},
{
"Handler_icp_attempts
"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_icp_attempts
),
SHOW_LONG_STATUS
},
{
"Handler_icp_attempts
"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_icp_attempts
),
SHOW_LONG_STATUS
},
{
"Handler_icp_match"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_icp_match
),
SHOW_LONG_STATUS
},
{
"Handler_icp_match"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_icp_match
),
SHOW_LONG_STATUS
},
{
"Handler_mrr_init"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_mrr_init_count
),
SHOW_LONG_STATUS
},
{
"Handler_mrr_init"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
ha_mrr_init_count
),
SHOW_LONG_STATUS
},
...
...
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