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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
55d7e055
Commit
55d7e055
authored
Sep 14, 2010
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
post push patch, fixing test result for bug#53806/46754.
parents
f26a117f
20c9d2b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/r/partition_column.result
mysql-test/r/partition_column.result
+2
-2
mysql-test/r/partition_column_prune.result
mysql-test/r/partition_column_prune.result
+2
-2
No files found.
mysql-test/r/partition_column.result
View file @
55d7e055
...
@@ -611,7 +611,7 @@ partition p1 values less than (3,3),
...
@@ -611,7 +611,7 @@ partition p1 values less than (3,3),
partition p2 values less than (9,5));
partition p2 values less than (9,5));
explain partitions select * from t1 where b < 2;
explain partitions select * from t1 where b < 2;
id select_type table partitions type possible_keys key key_len ref rows Extra
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p0,p1 ALL NULL NULL NULL NULL
7
Using where
1 SIMPLE t1 p0,p1 ALL NULL NULL NULL NULL
5
Using where
select * from t1 where b < 2;
select * from t1 where b < 2;
a b
a b
0 1
0 1
...
@@ -647,7 +647,7 @@ alter table t1 reorganize partition p2 into
...
@@ -647,7 +647,7 @@ alter table t1 reorganize partition p2 into
partition p22 values less than (9,5));
partition p22 values less than (9,5));
explain partitions select * from t1 where b < 4;
explain partitions select * from t1 where b < 4;
id select_type table partitions type possible_keys key key_len ref rows Extra
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p0,p11,p12,p21 ALL NULL NULL NULL NULL
7
Using where
1 SIMPLE t1 p0,p11,p12,p21 ALL NULL NULL NULL NULL
6
Using where
select * from t1 where b < 4;
select * from t1 where b < 4;
a b
a b
0 1
0 1
...
...
mysql-test/r/partition_column_prune.result
View file @
55d7e055
...
@@ -59,8 +59,8 @@ id select_type table partitions type possible_keys key key_len ref rows Extra
...
@@ -59,8 +59,8 @@ id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p01,p02,p03,p11 ALL NULL NULL NULL NULL 8 Using where
1 SIMPLE t1 p01,p02,p03,p11 ALL NULL NULL NULL NULL 8 Using where
explain partitions select * from t1 where a=4;
explain partitions select * from t1 where a=4;
id select_type table partitions type possible_keys key key_len ref rows Extra
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p11,p12,p13,p21 ALL NULL NULL NULL NULL
14
Using where
1 SIMPLE t1 p11,p12,p13,p21 ALL NULL NULL NULL NULL
8
Using where
explain partitions select * from t1 where a=2 and b < 22;
explain partitions select * from t1 where a=2 and b < 22;
id select_type table partitions type possible_keys key key_len ref rows Extra
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t1 p01,p02,p03 ALL NULL NULL NULL NULL
14
Using where
1 SIMPLE t1 p01,p02,p03 ALL NULL NULL NULL NULL
6
Using where
drop table t1;
drop table t1;
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