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
6765e30a
Commit
6765e30a
authored
Feb 06, 2007
by
tomas@poseidon.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb: only inject events (ACTIVE, NODE_FAILURE, CLUSTER_FAILURE) if bit shows connected
parent
bbe3008a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+10
-4
No files found.
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
6765e30a
...
...
@@ -1615,13 +1615,19 @@ NdbEventBuffer::insert_event(NdbEventOperationImpl* impl,
{
do
{
oid_ref
=
impl
->
m_oid
;
insertDataL
(
impl
,
&
data
,
ptr
);
if
(
impl
->
m_node_bit_mask
.
get
(
0u
))
{
oid_ref
=
impl
->
m_oid
;
insertDataL
(
impl
,
&
data
,
ptr
);
}
NdbEventOperationImpl
*
blob_op
=
impl
->
theBlobOpList
;
while
(
blob_op
!=
NULL
)
{
oid_ref
=
blob_op
->
m_oid
;
insertDataL
(
blob_op
,
&
data
,
ptr
);
if
(
blob_op
->
m_node_bit_mask
.
get
(
0u
))
{
oid_ref
=
blob_op
->
m_oid
;
insertDataL
(
blob_op
,
&
data
,
ptr
);
}
blob_op
=
blob_op
->
m_next
;
}
}
while
((
impl
=
impl
->
m_next
));
...
...
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