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
2db0bb1a
Commit
2db0bb1a
authored
Jun 04, 2009
by
sunny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/5.1: The version of the result file checked in was broken in r5243.
parent
992a74f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
mysql-test/innodb-autoinc.result
mysql-test/innodb-autoinc.result
+20
-6
No files found.
mysql-test/innodb-autoinc.result
View file @
2db0bb1a
...
@@ -867,11 +867,25 @@ INSERT INTO t2 SELECT NULL FROM t1;
...
@@ -867,11 +867,25 @@ INSERT INTO t2 SELECT NULL FROM t1;
Got one of the listed errors
Got one of the listed errors
DROP TABLE t1;
DROP TABLE t1;
DROP TABLE t2;
DROP TABLE t2;
c1 TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT
CREATE TABLE t1 (c1 INT PRIMARY KEY AUTO_INCREMENT) ENGINE=InnoDB;
PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t1 VALUES (null);
INSERT INTO t2 SELECT c1 FROM t1;
INSERT INTO t1 VALUES (null);
Got one of the listed errors
ALTER TABLE t1 CHANGE c1 d1 INT NOT NULL AUTO_INCREMENT;
INSERT INTO t2 SELECT NULL FROM t1;
SELECT * FROM t1;
d1
1
3
SELECT * FROM t1;
d1
1
3
INSERT INTO t1 VALUES(null);
Got one of the listed errors
Got one of the listed errors
ALTER TABLE t1 AUTO_INCREMENT = 3;
INSERT INTO t1 VALUES(null);
SELECT * FROM t1;
d1
1
3
4
DROP TABLE t1;
DROP TABLE t1;
DROP TABLE t2;
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