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
7f307660
Commit
7f307660
authored
Jun 28, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
into perch.ndb.mysql.com:/home/jonas/src/51-work
parents
b26e651f
0ff6b664
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
+60
-0
storage/ndb/src/ndbapi/NdbScanOperation.cpp
storage/ndb/src/ndbapi/NdbScanOperation.cpp
+60
-0
No files found.
storage/ndb/src/ndbapi/NdbScanOperation.cpp
View file @
7f307660
...
@@ -1574,6 +1574,66 @@ NdbScanOperation::close_impl(TransporterFacade* tp, bool forceSend,
...
@@ -1574,6 +1574,66 @@ NdbScanOperation::close_impl(TransporterFacade* tp, bool forceSend,
return
-
1
;
return
-
1
;
}
}
bool
holdLock
=
false
;
if
(
theSCAN_TABREQ
)
{
ScanTabReq
*
req
=
CAST_PTR
(
ScanTabReq
,
theSCAN_TABREQ
->
getDataPtrSend
());
holdLock
=
ScanTabReq
::
getHoldLockFlag
(
req
->
requestInfo
);
}
/**
* When using locks, force close of scan directly
*/
if
(
holdLock
&&
theError
.
code
==
0
&&
(
m_sent_receivers_count
+
m_conf_receivers_count
+
m_api_receivers_count
))
{
TransporterFacade
*
tp
=
TransporterFacade
::
instance
();
NdbApiSignal
tSignal
(
theNdb
->
theMyRef
);
tSignal
.
setSignal
(
GSN_SCAN_NEXTREQ
);
Uint32
*
theData
=
tSignal
.
getDataPtrSend
();
Uint64
transId
=
theNdbCon
->
theTransactionId
;
theData
[
0
]
=
theNdbCon
->
theTCConPtr
;
theData
[
1
]
=
1
;
theData
[
2
]
=
transId
;
theData
[
3
]
=
(
Uint32
)
(
transId
>>
32
);
tSignal
.
setLength
(
4
);
int
ret
=
tp
->
sendSignal
(
&
tSignal
,
nodeId
);
if
(
ret
)
{
setErrorCode
(
4008
);
return
-
1
;
}
checkForceSend
(
forceSend
);
/**
* If no receiver is outstanding...
* set it to 1 as execCLOSE_SCAN_REP resets it
*/
m_sent_receivers_count
=
m_sent_receivers_count
?
m_sent_receivers_count
:
1
;
while
(
theError
.
code
==
0
&&
(
m_sent_receivers_count
+
m_conf_receivers_count
))
{
theNdb
->
theImpl
->
theWaiter
.
m_node
=
nodeId
;
theNdb
->
theImpl
->
theWaiter
.
m_state
=
WAIT_SCAN
;
int
return_code
=
theNdb
->
receiveResponse
(
WAITFOR_SCAN_TIMEOUT
);
switch
(
return_code
){
case
0
:
break
;
case
-
1
:
setErrorCode
(
4008
);
case
-
2
:
m_api_receivers_count
=
0
;
m_conf_receivers_count
=
0
;
m_sent_receivers_count
=
0
;
theNdbCon
->
theReleaseOnClose
=
true
;
return
-
1
;
}
}
return
0
;
}
/**
/**
* Wait for outstanding
* Wait for outstanding
*/
*/
...
...
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