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
14d00843
Commit
14d00843
authored
Jun 14, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wl1671 - bug fix for node failure during scan
parent
b994b15b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+7
-7
No files found.
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
14d00843
...
...
@@ -6793,13 +6793,13 @@ void Dbtc::checkScanActiveInFailedLqh(Signal* signal,
for
(
scanptr
.
i
=
scanPtrI
;
scanptr
.
i
<
cscanrecFileSize
;
scanptr
.
i
++
)
{
jam
();
ptrAss
(
scanptr
,
scanRecord
);
bool
found
=
false
;
if
(
scanptr
.
p
->
scanState
!=
ScanRecord
::
IDLE
){
jam
();
ScanFragRecPtr
ptr
;
ScanFragList
run
(
c_scan_frag_pool
,
scanptr
.
p
->
m_running_scan_frags
);
ScanFragList
comp
(
c_scan_frag_pool
,
scanptr
.
p
->
m_completed_scan_frags
);
bool
found
=
false
;
for
(
run
.
first
(
ptr
);
!
ptr
.
isNull
();
){
jam
();
ScanFragRecPtr
curr
=
ptr
;
...
...
@@ -6815,12 +6815,12 @@ void Dbtc::checkScanActiveInFailedLqh(Signal* signal,
found
=
true
;
}
}
if
(
found
){
jam
();
scanError
(
signal
,
scanptr
,
ZSCAN_LQH_ERROR
);
}
}
if
(
found
){
jam
();
scanError
(
signal
,
scanptr
,
ZSCAN_LQH_ERROR
);
}
// Send CONTINUEB to continue later
signal
->
theData
[
0
]
=
TcContinueB
::
ZCHECK_SCAN_ACTIVE_FAILED_LQH
;
signal
->
theData
[
1
]
=
scanptr
.
i
+
1
;
// Check next scanptr
...
...
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