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
a2881469
Commit
a2881469
authored
Jun 07, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.1-maint
into mysql.com:/home/ram/work/b28806/b28806.5.1
parents
cfb5fc7e
675d0941
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
14 deletions
+39
-14
mysql-test/r/partition.result
mysql-test/r/partition.result
+14
-0
mysql-test/t/partition.test
mysql-test/t/partition.test
+17
-0
sql/ha_partition.cc
sql/ha_partition.cc
+8
-14
No files found.
mysql-test/r/partition.result
View file @
a2881469
...
...
@@ -1235,4 +1235,18 @@ aaa 2
drop table t1;
create table t1 (s1 bigint) partition by list (s1) (partition p1 values in (-9223372036854775808));
drop table t1;
create table t1(a int auto_increment, b int, primary key (b, a))
partition by hash(b) partitions 2;
insert into t1 values (null, 1);
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1 MyISAM 10 Fixed 1 9 9 0 0 0 1 NULL NULL NULL latin1_swedish_ci NULL partitioned
drop table t1;
create table t1(a int auto_increment primary key)
partition by key(a) partitions 2;
insert into t1 values (null), (null), (null);
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1 MyISAM 10 Fixed 3 7 21 0 0 0 4 NULL NULL NULL latin1_swedish_ci NULL partitioned
drop table t1;
End of 5.1 tests
mysql-test/t/partition.test
View file @
a2881469
...
...
@@ -1448,4 +1448,21 @@ drop table t1;
create
table
t1
(
s1
bigint
)
partition
by
list
(
s1
)
(
partition
p1
values
in
(
-
9223372036854775808
));
drop
table
t1
;
#
# Bug #28806: Running SHOW TABLE STATUS during high INSERT load crashes server
#
create
table
t1
(
a
int
auto_increment
,
b
int
,
primary
key
(
b
,
a
))
partition
by
hash
(
b
)
partitions
2
;
insert
into
t1
values
(
null
,
1
);
--
replace_column
9
0
12
NULL
13
NULL
14
NULL
show
table
status
;
drop
table
t1
;
create
table
t1
(
a
int
auto_increment
primary
key
)
partition
by
key
(
a
)
partitions
2
;
insert
into
t1
values
(
null
),
(
null
),
(
null
);
--
replace_column
9
0
12
NULL
13
NULL
14
NULL
show
table
status
;
drop
table
t1
;
--
echo
End
of
5.1
tests
sql/ha_partition.cc
View file @
a2881469
...
...
@@ -4253,22 +4253,16 @@ int ha_partition::info(uint flag)
if
(
flag
&
HA_STATUS_AUTO
)
{
ulonglong
nb_reserved_values
;
ulonglong
auto_increment_value
=
0
;
DBUG_PRINT
(
"info"
,
(
"HA_STATUS_AUTO"
));
/* we don't want to reserve any values, it's pure information */
if
(
table
->
found_next_number_field
)
file_array
=
m_file
;
do
{
/*
Can only call get_auto_increment for tables that actually
have auto_increment columns, otherwise there will be
problems in handlers that don't expect get_auto_increment
for non-autoincrement tables.
*/
get_auto_increment
(
0
,
0
,
0
,
&
stats
.
auto_increment_value
,
&
nb_reserved_values
);
release_auto_increment
();
}
file
=
*
file_array
;
file
->
info
(
HA_STATUS_AUTO
);
set_if_bigger
(
auto_increment_value
,
file
->
stats
.
auto_increment_value
);
}
while
(
*
(
++
file_array
));
stats
.
auto_increment_value
=
auto_increment_value
;
}
if
(
flag
&
HA_STATUS_VARIABLE
)
{
...
...
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