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
e02ee413
Commit
e02ee413
authored
Aug 06, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed ndb backup bug
parent
1a557525
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ndb/src/kernel/blocks/backup/Backup.hpp
ndb/src/kernel/blocks/backup/Backup.hpp
+2
-1
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+2
-1
No files found.
ndb/src/kernel/blocks/backup/Backup.hpp
View file @
e02ee413
...
...
@@ -696,6 +696,7 @@ Uint32 *
Backup
::
OperationRecord
::
newVariableKey
(
Uint32
sz
){
attrLeft
--
;
attrSzLeft
=
0
;
attrSzTotal
+=
sz
;
dst
=
&
dst_VariableData
->
Data
[
0
];
dst_VariableData
->
Sz
=
htonl
(
sz
);
...
...
@@ -712,7 +713,7 @@ Backup::OperationRecord::finished(){
return
false
;
}
attrLen
[
opNoDone
]
=
attrSzTotal
;
attrLen
[
opNoDone
]
=
attrSzTotal
+
sz_FixedKeys
;
opNoDone
++
;
scanStop
=
dst
=
(
Uint32
*
)
dst_VariableData
;
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
e02ee413
...
...
@@ -8569,7 +8569,8 @@ void Dblqh::sendKeyinfo20(Signal* signal,
return
;
}
EXECUTE_DIRECT
(
refToBlock
(
ref
),
GSN_KEYINFO20
,
signal
,
3
+
keyLen
);
EXECUTE_DIRECT
(
refToBlock
(
ref
),
GSN_KEYINFO20
,
signal
,
KeyInfo20
::
HeaderLength
+
keyLen
);
jamEntry
();
return
;
}
...
...
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