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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
764e4e5a
Commit
764e4e5a
authored
Jun 14, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct initialization of event operation to enable early delete
parent
d2b04770
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+12
-4
No files found.
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
764e4e5a
...
...
@@ -79,7 +79,8 @@ NdbEventOperationImpl::NdbEventOperationImpl(NdbEventOperation &f,
NdbEventOperation
(
*
this
),
m_facade
(
&
f
),
m_ndb
(
theNdb
),
m_state
(
EO_ERROR
)
m_state
(
EO_ERROR
),
m_oid
(
~
(
Uint32
)
0
)
{
DBUG_ENTER
(
"NdbEventOperationImpl::NdbEventOperationImpl"
);
...
...
@@ -88,7 +89,11 @@ NdbEventOperationImpl::NdbEventOperationImpl(NdbEventOperation &f,
assert
(
myDict
!=
NULL
);
const
NdbDictionary
::
Event
*
myEvnt
=
myDict
->
getEvent
(
eventName
);
if
(
!
myEvnt
)
{
m_error
.
code
=
myDict
->
getNdbError
().
code
;
DBUG_VOID_RETURN
;
}
if
(
!
myEvnt
)
{
m_error
.
code
=
myDict
->
getNdbError
().
code
;
DBUG_VOID_RETURN
;
}
init
(
myEvnt
->
m_impl
);
DBUG_VOID_RETURN
;
...
...
@@ -99,7 +104,8 @@ NdbEventOperationImpl::NdbEventOperationImpl(Ndb *theNdb,
NdbEventOperation
(
*
this
),
m_facade
(
this
),
m_ndb
(
theNdb
),
m_state
(
EO_ERROR
)
m_state
(
EO_ERROR
),
m_oid
(
~
(
Uint32
)
0
)
{
DBUG_ENTER
(
"NdbEventOperationImpl::NdbEventOperationImpl [evnt]"
);
init
(
evnt
);
...
...
@@ -113,7 +119,6 @@ NdbEventOperationImpl::init(NdbEventImpl& evnt)
m_magic_number
=
0
;
mi_type
=
0
;
m_oid
=
~
(
Uint32
)
0
;
m_change_mask
=
0
;
#ifdef VM_TRACE
m_data_done_count
=
0
;
...
...
@@ -173,6 +178,9 @@ NdbEventOperationImpl::~NdbEventOperationImpl()
DBUG_ENTER
(
"NdbEventOperationImpl::~NdbEventOperationImpl"
);
m_magic_number
=
0
;
if
(
m_oid
==
~
(
Uint32
)
0
)
DBUG_VOID_RETURN
;
stop
();
// m_bufferHandle->dropSubscribeEvent(m_bufferId);
;
// ToDo? We should send stop signal here
...
...
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