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
1af865e4
Commit
1af865e4
authored
Oct 25, 2011
by
Vasil Dimov
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1-security -> mysql-5.5-security (Fix Bug#12661768)
parents
484280a1
dce33740
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
1 deletion
+59
-1
mysql-test/suite/innodb/r/innodb_bug12661768.result
mysql-test/suite/innodb/r/innodb_bug12661768.result
+2
-0
mysql-test/suite/innodb/t/innodb_bug12661768.test
mysql-test/suite/innodb/t/innodb_bug12661768.test
+50
-0
sql/handler.cc
sql/handler.cc
+7
-1
No files found.
mysql-test/suite/innodb/r/innodb_bug12661768.result
0 → 100644
View file @
1af865e4
SET SESSION foreign_key_checks=0;
ERROR 23000: Upholding foreign key constraints for table 'bug12661768_1', entry '3-bbb', key 2 would lead to a duplicate entry
mysql-test/suite/innodb/t/innodb_bug12661768.test
0 → 100644
View file @
1af865e4
#
# Bug#12661768 UPDATE IGNORE CRASHES SERVER IF TABLE IS INNODB AND IT IS
# PARENT FOR OTHER ONE
#
--
source
include
/
have_innodb
.
inc
SET
SESSION
foreign_key_checks
=
0
;
# only interested that the "UPDATE IGNORE" at the end does not crash the server
--
disable_query_log
--
disable_result_log
SET
NAMES
utf8
;
--
let
$t1_name
=
bug12661768_1
--
let
$t2_name
=
bug12661768_2
--
let
$fk_name
=
ab_on_2
--
let
$key_str
=
'bbb'
eval
DROP
TABLE
IF
EXISTS
`$t2_name`
,
`$t1_name`
;
eval
CREATE
TABLE
`$t1_name`
(
a
INT
,
b
VARCHAR
(
512
),
PRIMARY
KEY
(
a
,
b
)
)
ENGINE
=
INNODB
;
eval
CREATE
TABLE
`$t2_name`
(
id
INT
,
a
INT
,
b
VARCHAR
(
512
),
PRIMARY
KEY
(
id
),
UNIQUE
KEY
`$fk_name`
(
a
,
b
),
FOREIGN
KEY
(
a
,
b
)
REFERENCES
`$t1_name`
(
a
,
b
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
)
ENGINE
=
INNODB
;
eval
INSERT
INTO
`$t1_name`
VALUES
(
1
,
$key_str
);
eval
INSERT
INTO
`$t2_name`
VALUES
(
100
,
1
,
$key_str
),
(
101
,
3
,
$key_str
);
SET
SESSION
foreign_key_checks
=
1
;
--
enable_result_log
--
error
ER_FOREIGN_DUPLICATE_KEY
eval
UPDATE
IGNORE
`$t1_name`
SET
a
=
3
;
eval
DROP
TABLE
`$t2_name`
,
`$t1_name`
;
sql/handler.cc
View file @
1af865e4
...
...
@@ -2738,7 +2738,13 @@ void handler::print_error(int error, myf errflag)
char
key
[
MAX_KEY_LENGTH
];
String
str
(
key
,
sizeof
(
key
),
system_charset_info
);
/* Table is opened and defined at this point */
key_unpack
(
&
str
,
table
,(
uint
)
key_nr
);
key_unpack
(
&
str
,
table
,
0
/* Use 0 instead of key_nr because key_nr
is a key number in the child FK table, not in our 'table'. See
Bug#12661768 UPDATE IGNORE CRASHES SERVER IF TABLE IS INNODB
AND IT IS PARENT FOR OTHER ONE
This bug gets a better fix in MySQL 5.6, but it is too risky
to get that in 5.1 and 5.5 (extending the handler interface
and adding new error message codes */
);
max_length
=
(
MYSQL_ERRMSG_SIZE
-
(
uint
)
strlen
(
ER
(
ER_FOREIGN_DUPLICATE_KEY
)));
if
(
str
.
length
()
>=
max_length
)
...
...
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