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
8e27845b
Commit
8e27845b
authored
Nov 04, 2014
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A follow up fix for MDEV-5528
(forgot to do "git add" for two files in the previous commit for MDEV-5528)
parent
251fa7ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/suite/innodb/r/innodb_mysql.result
mysql-test/suite/innodb/r/innodb_mysql.result
+1
-1
storage/xtradb/dict/dict0stats.cc
storage/xtradb/dict/dict0stats.cc
+2
-2
No files found.
mysql-test/suite/innodb/r/innodb_mysql.result
View file @
8e27845b
...
...
@@ -694,7 +694,7 @@ EXPLAIN
SELECT COUNT(*) FROM t1 FORCE INDEX(idx_b, idx_c)
WHERE (c >= '2007-01-02' AND c <= '2007-01-03') OR b >= 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index_merge idx_b,idx_c idx_c,idx_b
8
,4 NULL # Using sort_union(idx_c,idx_b); Using where
1 SIMPLE t1 index_merge idx_b,idx_c idx_c,idx_b
5
,4 NULL # Using sort_union(idx_c,idx_b); Using where
SELECT COUNT(*) FROM t1 FORCE INDEX(idx_b, idx_c)
WHERE (c >= '2007-01-02' AND c <= '2007-01-03') OR b >= 1;
COUNT(*)
...
...
storage/xtradb/dict/dict0stats.cc
View file @
8e27845b
...
...
@@ -194,7 +194,7 @@ dict_stats_persistent_storage_check(
{
"table_name"
,
DATA_VARMYSQL
,
DATA_NOT_NULL
,
192
},
{
"last_update"
,
DATA_
INT
,
{
"last_update"
,
DATA_
FIXBINARY
,
DATA_NOT_NULL
,
4
},
{
"n_rows"
,
DATA_INT
,
...
...
@@ -225,7 +225,7 @@ dict_stats_persistent_storage_check(
{
"index_name"
,
DATA_VARMYSQL
,
DATA_NOT_NULL
,
192
},
{
"last_update"
,
DATA_
INT
,
{
"last_update"
,
DATA_
FIXBINARY
,
DATA_NOT_NULL
,
4
},
{
"stat_name"
,
DATA_VARMYSQL
,
...
...
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