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
0f577611
Commit
0f577611
authored
Feb 04, 2009
by
Alfranio Correia
Browse files
Options
Browse Files
Download
Plain Diff
auto-merge for BUG#42445.
parents
4c67bc0c
c29994ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+6
-4
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
0f577611
...
...
@@ -3577,7 +3577,8 @@ ha_innobase::write_row(
/* out: error code */
uchar
*
record
)
/* in: a row in MySQL format */
{
int
error
=
0
;
ulint
error
=
0
;
int
error_result
=
0
;
ibool
auto_inc_used
=
FALSE
;
ulint
sql_command
;
trx_t
*
trx
=
thd_to_trx
(
user_thd
);
...
...
@@ -3693,6 +3694,7 @@ no_commit:
}
/* MySQL errors are passed straight back. */
error_result
=
(
int
)
error
;
goto
func_exit
;
}
...
...
@@ -3786,7 +3788,7 @@ set_max_autoinc:
err
=
innobase_set_max_autoinc
(
auto_inc
);
if
(
err
!=
DB_SUCCESS
)
{
error
=
(
int
)
err
;
error
=
err
;
}
}
break
;
...
...
@@ -3796,12 +3798,12 @@ set_max_autoinc:
innodb_srv_conc_exit_innodb
(
prebuilt
->
trx
);
report_error:
error
=
convert_error_code_to_mysql
(
error
,
user_thd
);
error
_result
=
convert_error_code_to_mysql
((
int
)
error
,
user_thd
);
func_exit:
innobase_active_small
();
DBUG_RETURN
(
error
);
DBUG_RETURN
(
error
_result
);
}
/**************************************************************************
...
...
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