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
0273a29b
Commit
0273a29b
authored
Jun 15, 2006
by
mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#19281: Auto-increment disappeared after create index
parent
2e6b5157
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
mysql-test/r/partition_list.result
mysql-test/r/partition_list.result
+10
-0
mysql-test/t/partition_list.test
mysql-test/t/partition_list.test
+12
-0
sql/ha_partition.cc
sql/ha_partition.cc
+1
-0
No files found.
mysql-test/r/partition_list.result
View file @
0273a29b
...
...
@@ -191,3 +191,13 @@ SELECT COUNT(*) FROM t1 WHERE s1 < 3;
COUNT(*)
2
DROP TABLE t1;
create table t1 (a int auto_increment primary key)
auto_increment=100
partition by list (a)
(partition p0 values in (1, 100));
create index inx on t1 (a);
insert into t1 values (null);
select * from t1;
a
100
drop table t1;
mysql-test/t/partition_list.test
View file @
0273a29b
...
...
@@ -124,3 +124,15 @@ INSERT INTO t1 VALUES (1), (2), (3), (4), (5);
SELECT
COUNT
(
*
)
FROM
t1
WHERE
s1
<
3
;
DROP
TABLE
t1
;
#
# Bug 19281 Partitions: Auto-increment value lost
#
create
table
t1
(
a
int
auto_increment
primary
key
)
auto_increment
=
100
partition
by
list
(
a
)
(
partition
p0
values
in
(
1
,
100
));
create
index
inx
on
t1
(
a
);
insert
into
t1
values
(
null
);
select
*
from
t1
;
drop
table
t1
;
sql/ha_partition.cc
View file @
0273a29b
...
...
@@ -1581,6 +1581,7 @@ error:
void
ha_partition
::
update_create_info
(
HA_CREATE_INFO
*
create_info
)
{
m_file
[
0
]
->
update_create_info
(
create_info
);
return
;
}
...
...
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