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
246d76f1
Commit
246d76f1
authored
Jun 09, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.1-jonas
into perch.ndb.mysql.com:/home/jonas/src/51-jonas
parents
e3323e7b
4a8dbd3f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
storage/ndb/src/ndbapi/NdbScanOperation.cpp
storage/ndb/src/ndbapi/NdbScanOperation.cpp
+11
-3
No files found.
storage/ndb/src/ndbapi/NdbScanOperation.cpp
View file @
246d76f1
...
...
@@ -478,10 +478,14 @@ int NdbScanOperation::nextResultImpl(bool fetchAllowed, bool forceSend)
*/
PollGuard
poll_guard
(
tp
,
&
theNdb
->
theImpl
->
theWaiter
,
theNdb
->
theNdbBlockNumber
);
const
Uint32
seq
=
theNdbCon
->
theNodeSequence
;
if
(
theError
.
code
)
return
-
1
;
{
goto
err4
;
}
Uint32
seq
=
theNdbCon
->
theNodeSequence
;
if
(
seq
==
tp
->
getNodeSequence
(
nodeId
)
&&
send_next_scan
(
idx
,
false
)
==
0
)
{
...
...
@@ -564,6 +568,10 @@ int NdbScanOperation::nextResultImpl(bool fetchAllowed, bool forceSend)
if
(
theError
.
code
==
0
)
setErrorCode
(
4028
);
// seq changed = Node fail
break
;
case
-
4
:
err4:
setErrorCode
(
theError
.
code
);
break
;
}
theNdbCon
->
theTransactionIsStarted
=
false
;
...
...
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