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
58b03d45
Commit
58b03d45
authored
Sep 02, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/mikron/mysql-4.1
parents
3c3db073
69e53670
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
16 deletions
+14
-16
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
+1
-0
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+13
-16
No files found.
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
View file @
58b03d45
...
...
@@ -943,6 +943,7 @@ private:
void
ndbStartReqLab
(
Signal
*
,
BlockReference
ref
);
void
nodeRestartStartRecConfLab
(
Signal
*
);
void
dihCopyCompletedLab
(
Signal
*
);
void
release_connect
(
ConnectRecordPtr
ptr
);
void
copyTableNode
(
Signal
*
,
CopyTableNode
*
ctn
,
NodeRecordPtr
regNodePtr
);
...
...
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
58b03d45
...
...
@@ -6130,13 +6130,9 @@ void Dbdih::execDIRELEASEREQ(Signal* signal)
ptrCheckGuard
(
connectPtr
,
cconnectFileSize
,
connectRecord
);
ndbrequire
(
connectPtr
.
p
->
connectState
!=
ConnectRecord
::
FREE
);
ndbrequire
(
connectPtr
.
p
->
userblockref
==
userRef
);
connectPtr
.
p
->
connectState
=
ConnectRecord
::
FREE
;
signal
->
theData
[
0
]
=
connectPtr
.
p
->
userpointer
;
sendSignal
(
connectPtr
.
p
->
userblockref
,
GSN_DIRELEASECONF
,
signal
,
1
,
JBB
);
connectPtr
.
p
->
nfConnect
=
cfirstconnect
;
cfirstconnect
=
connectPtr
.
i
;
connectPtr
.
p
->
userblockref
=
ZNIL
;
connectPtr
.
p
->
userpointer
=
RNIL
;
release_connect
(
connectPtr
);
}
//Dbdih::execDIRELEASEREQ()
/*
...
...
@@ -6573,11 +6569,16 @@ Dbdih::sendAddFragreq(Signal* signal, ConnectRecordPtr connectPtr,
DiAddTabConf
::
SignalLength
,
JBB
);
// Release
connectPtr
.
p
->
userblockref
=
ZNIL
;
connectPtr
.
p
->
userpointer
=
RNIL
;
connectPtr
.
p
->
connectState
=
ConnectRecord
::
FREE
;
connectPtr
.
p
->
nfConnect
=
cfirstconnect
;
cfirstconnect
=
connectPtr
.
i
;
release_connect
(
connectPtr
);
}
void
Dbdih
::
release_connect
(
ConnectRecordPtr
ptr
)
{
ptr
.
p
->
userblockref
=
ZNIL
;
ptr
.
p
->
userpointer
=
RNIL
;
ptr
.
p
->
connectState
=
ConnectRecord
::
FREE
;
ptr
.
p
->
nfConnect
=
cfirstconnect
;
cfirstconnect
=
ptr
.
i
;
}
void
...
...
@@ -6614,11 +6615,7 @@ Dbdih::execADD_FRAGREF(Signal* signal){
}
// Release
connectPtr
.
p
->
userblockref
=
ZNIL
;
connectPtr
.
p
->
userpointer
=
RNIL
;
connectPtr
.
p
->
connectState
=
ConnectRecord
::
FREE
;
connectPtr
.
p
->
nfConnect
=
cfirstconnect
;
cfirstconnect
=
connectPtr
.
i
;
release_connect
(
connectPtr
);
}
/*
...
...
@@ -6627,10 +6624,10 @@ Dbdih::execADD_FRAGREF(Signal* signal){
*/
void
Dbdih
::
addtabrefuseLab
(
Signal
*
signal
,
ConnectRecordPtr
connectPtr
,
Uint32
errorCode
)
{
connectPtr
.
p
->
connectState
=
ConnectRecord
::
INUSE
;
signal
->
theData
[
0
]
=
connectPtr
.
p
->
userpointer
;
signal
->
theData
[
1
]
=
errorCode
;
sendSignal
(
connectPtr
.
p
->
userblockref
,
GSN_DIADDTABREF
,
signal
,
2
,
JBB
);
release_connect
(
connectPtr
);
return
;
}
//Dbdih::addtabrefuseLab()
...
...
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