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
6e4acae6
Commit
6e4acae6
authored
Apr 25, 2007
by
msvensson@pilot.blaudden
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.blaudden:/home/msvensson/mysql/bug25262/my50-bug25262
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
parents
9bd17ef1
61140f04
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
0 deletions
+56
-0
mysql-test/r/alter_table.result
mysql-test/r/alter_table.result
+24
-0
mysql-test/t/alter_table.test
mysql-test/t/alter_table.test
+26
-0
sql/sql_table.cc
sql/sql_table.cc
+6
-0
No files found.
mysql-test/r/alter_table.result
View file @
6e4acae6
...
...
@@ -860,3 +860,27 @@ ALTER TABLE t1 ADD d INT;
ALTER TABLE t1 ADD KEY (d(20));
ERROR HY000: Incorrect sub part key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique sub keys
DROP TABLE t1;
create table t1(id int(8) primary key auto_increment) engine=heap;
insert into t1 values (null);
insert into t1 values (null);
select * from t1;
id
1
2
alter table t1 auto_increment = 50;
alter table t1 engine = myisam;
insert into t1 values (null);
select * from t1;
id
1
2
50
alter table t1 engine = heap;
insert into t1 values (null);
select * from t1;
id
1
2
50
51
drop table t1;
mysql-test/t/alter_table.test
View file @
6e4acae6
...
...
@@ -636,3 +636,29 @@ ALTER TABLE t1 ADD d INT;
ALTER
TABLE
t1
ADD
KEY
(
d
(
20
));
DROP
TABLE
t1
;
# Bug#25262 Auto Increment lost when changing Engine type
#
create
table
t1
(
id
int
(
8
)
primary
key
auto_increment
)
engine
=
heap
;
insert
into
t1
values
(
null
);
insert
into
t1
values
(
null
);
select
*
from
t1
;
# Set auto increment to 50
alter
table
t1
auto_increment
=
50
;
# Alter to myisam
alter
table
t1
engine
=
myisam
;
# This insert should get id 50
insert
into
t1
values
(
null
);
select
*
from
t1
;
# Alter to heap again
alter
table
t1
engine
=
heap
;
insert
into
t1
values
(
null
);
select
*
from
t1
;
drop
table
t1
;
sql/sql_table.cc
View file @
6e4acae6
...
...
@@ -3316,6 +3316,12 @@ view_err:
create_info
->
avg_row_length
=
table
->
s
->
avg_row_length
;
if
(
!
(
used_fields
&
HA_CREATE_USED_DEFAULT_CHARSET
))
create_info
->
default_table_charset
=
table
->
s
->
table_charset
;
if
(
!
(
used_fields
&
HA_CREATE_USED_AUTO
)
&&
table
->
found_next_number_field
)
{
/* Table has an autoincrement, copy value to new table */
table
->
file
->
info
(
HA_STATUS_AUTO
);
create_info
->
auto_increment_value
=
table
->
file
->
auto_increment_value
;
}
restore_record
(
table
,
s
->
default_values
);
// Empty record for DEFAULT
List_iterator
<
Alter_drop
>
drop_it
(
alter_info
->
drop_list
);
...
...
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