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
ebc89b98
Commit
ebc89b98
authored
Jan 10, 2007
by
holyfoot/hf@deer.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/hf/work/24502/my51-24502
into mysql.com:/home/hf/work/mysql-5.1-mrg
parents
743beccf
3f2ef817
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
0 deletions
+27
-0
mysql-test/r/partition.result
mysql-test/r/partition.result
+10
-0
mysql-test/t/partition.test
mysql-test/t/partition.test
+16
-0
sql/sql_partition.cc
sql/sql_partition.cc
+1
-0
No files found.
mysql-test/r/partition.result
View file @
ebc89b98
...
...
@@ -1128,4 +1128,14 @@ a
18446744073709551613
18446744073709551614
drop table t1;
CREATE TABLE t1 (
num int(11) NOT NULL, cs int(11) NOT NULL)
PARTITION BY RANGE (num) SUBPARTITION BY HASH (
cs) SUBPARTITIONS 2 (PARTITION p_X VALUES LESS THAN MAXVALUE);
ALTER TABLE t1
REORGANIZE PARTITION p_X INTO (
PARTITION p_100 VALUES LESS THAN (100),
PARTITION p_X VALUES LESS THAN MAXVALUE
);
drop table t1;
End of 5.1 tests
mysql-test/t/partition.test
View file @
ebc89b98
...
...
@@ -1354,4 +1354,20 @@ delete from t1 where a = 18446744073709551615;
select
*
from
t1
;
drop
table
t1
;
#
# Bug 24502 reorganize partition closes connection
#
CREATE
TABLE
t1
(
num
int
(
11
)
NOT
NULL
,
cs
int
(
11
)
NOT
NULL
)
PARTITION
BY
RANGE
(
num
)
SUBPARTITION
BY
HASH
(
cs
)
SUBPARTITIONS
2
(
PARTITION
p_X
VALUES
LESS
THAN
MAXVALUE
);
ALTER
TABLE
t1
REORGANIZE
PARTITION
p_X
INTO
(
PARTITION
p_100
VALUES
LESS
THAN
(
100
),
PARTITION
p_X
VALUES
LESS
THAN
MAXVALUE
);
drop
table
t1
;
--
echo
End
of
5.1
tests
sql/sql_partition.cc
View file @
ebc89b98
...
...
@@ -4738,6 +4738,7 @@ state of p1.
}
alt_part_info
->
part_type
=
tab_part_info
->
part_type
;
alt_part_info
->
subpart_type
=
tab_part_info
->
subpart_type
;
alt_part_info
->
no_subparts
=
tab_part_info
->
no_subparts
;
DBUG_ASSERT
(
!
alt_part_info
->
use_default_partitions
);
if
(
alt_part_info
->
set_up_defaults_for_partitioning
(
table
->
file
,
ULL
(
0
),
...
...
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