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
51722e02
Commit
51722e02
authored
Aug 23, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wl2025 - bug fix for filter fail (tupkeyref)
parent
eff1123f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
+1
-1
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+7
-6
No files found.
ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
View file @
51722e02
...
...
@@ -12562,7 +12562,7 @@ void Dbacc::releaseLcpConnectRec(Signal* signal)
/* --------------------------------------------------------------------------------- */
void
Dbacc
::
releaseOpRec
(
Signal
*
signal
)
{
#if
def NDB_DEBUG_FULL
#if
0
// DEBUG CODE
// Check that the operation to be released isn't
// already in the list of free operations
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
51722e02
...
...
@@ -8174,13 +8174,14 @@ void Dblqh::continueScanAfterBlockedLab(Signal* signal)
jam
();
scanptr
.
p
->
scanFlag
=
NextScanReq
::
ZSCAN_NEXT_COMMIT
;
accOpPtr
=
get_acc_ptr_from_scan_record
(
scanptr
.
p
,
scanptr
.
p
->
m_curr_batch_size_rows
,
false
);
scanptr
.
p
->
m_curr_batch_size_rows
,
false
);
scanptr
.
p
->
scan_acc_index
--
;
}
else
if
(
scanptr
.
p
->
scanFlag
==
NextScanReq
::
ZSCAN_NEXT_COMMIT
)
{
jam
();
accOpPtr
=
get_acc_ptr_from_scan_record
(
scanptr
.
p
,
scanptr
.
p
->
m_curr_batch_size_rows
-
1
,
false
);
scanptr
.
p
->
m_curr_batch_size_rows
-
1
,
false
);
}
else
{
jam
();
accOpPtr
=
RNIL
;
// The value is not used in ACC
...
...
@@ -8190,9 +8191,9 @@ void Dblqh::continueScanAfterBlockedLab(Signal* signal)
signal
->
theData
[
1
]
=
accOpPtr
;
signal
->
theData
[
2
]
=
scanptr
.
p
->
scanFlag
;
if
(
!
scanptr
.
p
->
rangeScan
)
sendSignal
(
tcConnectptr
.
p
->
tcAccBlockref
,
GSN_NEXT_SCANREQ
,
signal
,
3
,
JBB
);
sendSignal
(
tcConnectptr
.
p
->
tcAccBlockref
,
GSN_NEXT_SCANREQ
,
signal
,
3
,
JBB
);
else
sendSignal
(
tcConnectptr
.
p
->
tcTuxBlockref
,
GSN_NEXT_SCANREQ
,
signal
,
3
,
JBB
);
sendSignal
(
tcConnectptr
.
p
->
tcTuxBlockref
,
GSN_NEXT_SCANREQ
,
signal
,
3
,
JBB
);
}
//Dblqh::continueScanAfterBlockedLab()
/* -------------------------------------------------------------------------
...
...
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