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
6ccebbaf
Commit
6ccebbaf
authored
Jul 26, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0
into mysql.com:/home/mysql_src/mysql-4.0
parents
df5b0889
f3a847ec
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/r/rpl_insert_id.result
mysql-test/r/rpl_insert_id.result
+2
-2
mysql-test/t/rpl_insert_id.test
mysql-test/t/rpl_insert_id.test
+4
-2
No files found.
mysql-test/r/rpl_insert_id.result
View file @
6ccebbaf
...
...
@@ -21,8 +21,8 @@ b c
1 4
drop table t1;
drop table t2;
create table t1(a int auto_increment, key(a));
create table t2(b int auto_increment, c int, key(b)
)
;
create table t1(a int auto_increment, key(a))
type=innodb
;
create table t2(b int auto_increment, c int, key(b)
, foreign key(b) references t1(a)) type=innodb
;
SET FOREIGN_KEY_CHECKS=0;
insert into t1 values (10);
insert into t1 values (null),(null),(null);
...
...
mysql-test/t/rpl_insert_id.test
View file @
6ccebbaf
...
...
@@ -22,8 +22,10 @@ connection master;
#are replicated the same way
drop
table
t1
;
drop
table
t2
;
create
table
t1
(
a
int
auto_increment
,
key
(
a
));
create
table
t2
(
b
int
auto_increment
,
c
int
,
key
(
b
));
--
disable_warnings
create
table
t1
(
a
int
auto_increment
,
key
(
a
))
type
=
innodb
;
create
table
t2
(
b
int
auto_increment
,
c
int
,
key
(
b
),
foreign
key
(
b
)
references
t1
(
a
))
type
=
innodb
;
--
enable_warnings
SET
FOREIGN_KEY_CHECKS
=
0
;
insert
into
t1
values
(
10
);
insert
into
t1
values
(
null
),(
null
),(
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