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
ee7f4192
Commit
ee7f4192
authored
Sep 09, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into serg.mylan:/usr/home/serg/Abk/mysql-5.0
parents
65ba93fd
68e46c9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
sql/handler.cc
sql/handler.cc
+13
-5
No files found.
sql/handler.cc
View file @
ee7f4192
...
...
@@ -570,12 +570,20 @@ int ha_prepare(THD *thd)
{
int
err
;
statistic_increment
(
thd
->
status_var
.
ha_prepare_count
,
&
LOCK_status
);
if
((
err
=
(
*
(
*
ht
)
->
prepare
)(
thd
,
all
))
)
if
((
*
ht
)
->
prepare
)
{
my_error
(
ER_ERROR_DURING_COMMIT
,
MYF
(
0
),
err
);
ha_rollback_trans
(
thd
,
all
);
error
=
1
;
break
;
if
((
err
=
(
*
(
*
ht
)
->
prepare
)(
thd
,
all
)))
{
my_error
(
ER_ERROR_DURING_COMMIT
,
MYF
(
0
),
err
);
ha_rollback_trans
(
thd
,
all
);
error
=
1
;
break
;
}
}
else
{
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_ILLEGAL_HA
,
ER
(
ER_ILLEGAL_HA
),
(
*
ht
)
->
name
);
}
}
}
...
...
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