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
6b8e4c93
Commit
6b8e4c93
authored
Aug 06, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#4586 + TC fix
parent
99ec0887
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+2
-1
ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp
ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp
+3
-2
No files found.
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
6b8e4c93
...
...
@@ -4959,6 +4959,7 @@ void Dbtc::execLQHKEYREF(Signal* signal)
}
}
Uint32
marker
=
regTcPtr
->
commitAckMarker
;
markOperationAborted
(
regApiPtr
,
regTcPtr
);
if
(
regApiPtr
->
apiConnectstate
==
CS_ABORTING
){
...
...
@@ -4978,7 +4979,7 @@ void Dbtc::execLQHKEYREF(Signal* signal)
return
;
}
//if
if
(
regTcPtr
->
commitAckM
arker
!=
RNIL
){
if
(
m
arker
!=
RNIL
){
/**
* This was an insert/update/delete/write which failed
* that contained the marker
...
...
ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp
View file @
6b8e4c93
...
...
@@ -139,8 +139,9 @@ void Dbtup::initializePage()
ptrAss
(
pagePtr
,
page
);
pagePtr
.
p
->
pageWord
[
ZPAGE_STATE_POS
]
=
~
ZFREE_COMMON
;
cnoOfAllocatedPages
=
1
+
MAX_PARALLELL_TUP_SRREQ
;
returnCommonArea
(
cnoOfAllocatedPages
,
cnoOfPage
-
cnoOfAllocatedPages
);
Uint32
tmp
=
1
+
MAX_PARALLELL_TUP_SRREQ
;
returnCommonArea
(
tmp
,
cnoOfPage
-
tmp
);
cnoOfAllocatedPages
=
tmp
;
// Is updated by returnCommonArea
c_sr_free_page_0
=
~
0
;
}
//Dbtup::initializePage()
...
...
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