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
6b84456a
Commit
6b84456a
authored
Jul 10, 2006
by
gkodinov/kgeorge@macbook.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more 4.1->5.0 merge fixes for bug#14553
parent
8f71e47a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
mysql-test/r/rpl_insert_id.result
mysql-test/r/rpl_insert_id.result
+1
-1
mysql-test/t/rpl_insert_id.test
mysql-test/t/rpl_insert_id.test
+0
-1
No files found.
mysql-test/r/rpl_insert_id.result
View file @
6b84456a
...
...
@@ -73,7 +73,7 @@ CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
INSERT INTO t1 VALUES (1),(1);
ERROR 23000: Duplicate entry '1' for key 1
drop table
if exists t1, t2
;
drop table
t1
;
create table t1(a int auto_increment, key(a));
create table t2(a int);
insert into t1 (a) values (null);
...
...
mysql-test/t/rpl_insert_id.test
View file @
6b84456a
...
...
@@ -82,7 +82,6 @@ sync_slave_with_master;
# Bug#14553: NULL in WHERE resets LAST_INSERT_ID
#
connection
master
;
drop
table
if
exists
t1
,
t2
;
create
table
t1
(
a
int
auto_increment
,
key
(
a
));
create
table
t2
(
a
int
);
insert
into
t1
(
a
)
values
(
null
);
...
...
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