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
98d87fc5
Commit
98d87fc5
authored
Feb 06, 2006
by
jonas@eel.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb
Fix for wierd var key restore problem
parent
420204c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
storage/ndb/src/kernel/blocks/restore.cpp
storage/ndb/src/kernel/blocks/restore.cpp
+5
-5
No files found.
storage/ndb/src/kernel/blocks/restore.cpp
View file @
98d87fc5
...
...
@@ -790,7 +790,7 @@ Restore::parse_table_description(Signal* signal, FilePtr file_ptr,
DataBuffer
<
15
>
variable
(
m_databuffer_pool
);
Uint32
null_offset
=
0
;
union
{
Column
c
;
Uint32
_align
[
1
];};
union
{
Column
c
;
Uint32
_align
[
2
];};
for
(
Uint32
i
=
0
;
i
<
tmpTab
.
NoOfAttributes
;
i
++
)
{
jam
();
DictTabInfo
::
Attribute
tmp
;
tmp
.
init
();
...
...
@@ -809,7 +809,7 @@ Restore::parse_table_description(Signal* signal, FilePtr file_ptr,
union
{
Column
c
;
Uint32
_align
[
1
];
Uint32
_align
[
2
];
};
c
.
m_id
=
tmp
.
AttributeId
;
c
.
m_size
=
sz32
;
...
...
@@ -935,11 +935,12 @@ Restore::parse_record(Signal* signal, FilePtr file_ptr,
Uint32
*
attrData
=
attr_start
;
union
{
Column
c
;
Uint32
_align
[
1
];
Uint32
_align
[
2
];
};
bool
disk
=
false
;
bool
rowid
=
false
;
bool
gci
=
false
;
Uint32
tableId
=
file_ptr
.
p
->
m_table_id
;
Uint64
gci_val
;
Local_key
rowid_val
;
...
...
@@ -998,7 +999,7 @@ Restore::parse_record(Signal* signal, FilePtr file_ptr,
Uint32
sz32
=
(
sz
+
3
)
>>
2
;
ndbassert
(
c
.
m_flags
&
(
Column
::
COL_VAR
|
Column
::
COL_NULL
));
if
(
c
.
m_flags
&
Column
::
COL_KEY
)
if
(
c
.
m_flags
&
Column
::
COL_KEY
)
{
memcpy
(
keyData
,
data
,
4
*
sz32
);
keyData
+=
sz32
;
...
...
@@ -1019,7 +1020,6 @@ Restore::parse_record(Signal* signal, FilePtr file_ptr,
Uint32
attrLen
=
attrData
-
attr_start
;
LqhKeyReq
*
req
=
(
LqhKeyReq
*
)
signal
->
getDataPtrSend
();
Uint32
tableId
=
file_ptr
.
p
->
m_table_id
;
const
KeyDescriptor
*
desc
=
g_key_descriptor_pool
.
getPtr
(
tableId
);
if
(
desc
->
noOfKeyAttr
!=
desc
->
noOfVarKeys
)
{
...
...
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