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
16f0bd71
Commit
16f0bd71
authored
Dec 15, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to fix assertion failures at slave shutdown when running
rpl_ndb tests on sapsrv1.
parent
2e82e666
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
sql/ha_ndbcluster_binlog.cc
sql/ha_ndbcluster_binlog.cc
+6
-3
No files found.
sql/ha_ndbcluster_binlog.cc
View file @
16f0bd71
...
@@ -2326,9 +2326,12 @@ static int open_ndb_binlog_index(THD *thd, TABLE_LIST *tables,
...
@@ -2326,9 +2326,12 @@ static int open_ndb_binlog_index(THD *thd, TABLE_LIST *tables,
thd
->
clear_error
();
thd
->
clear_error
();
if
(
open_tables
(
thd
,
&
tables
,
&
counter
,
MYSQL_LOCK_IGNORE_FLUSH
))
if
(
open_tables
(
thd
,
&
tables
,
&
counter
,
MYSQL_LOCK_IGNORE_FLUSH
))
{
{
sql_print_error
(
"NDB Binlog: Opening ndb_binlog_index: %d, '%s'"
,
if
(
thd
->
killed
)
thd
->
main_da
.
sql_errno
(),
sql_print_error
(
"NDB Binlog: Opening ndb_binlog_index: killed"
);
thd
->
main_da
.
message
());
else
sql_print_error
(
"NDB Binlog: Opening ndb_binlog_index: %d, '%s'"
,
thd
->
main_da
.
sql_errno
(),
thd
->
main_da
.
message
());
thd
->
proc_info
=
save_proc_info
;
thd
->
proc_info
=
save_proc_info
;
return
-
1
;
return
-
1
;
}
}
...
...
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