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
582438f9
Commit
582438f9
authored
Jul 30, 2007
by
lzhou/zhl@dev3-63.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#30024 Restore of backup from different endian can work for datetime
parent
403c0b35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
storage/ndb/tools/restore/Restore.cpp
storage/ndb/tools/restore/Restore.cpp
+12
-0
No files found.
storage/ndb/tools/restore/Restore.cpp
View file @
582438f9
...
...
@@ -664,6 +664,18 @@ RestoreDataIterator::getNextTuple(int & res)
*/
const
Uint32
arraySize
=
sz
/
(
attr_desc
->
size
/
8
);
assert
(
arraySize
<=
attr_desc
->
arraySize
);
//convert datetime type
if
(
!
m_hostByteOrder
&&
attr_desc
->
m_column
->
getType
()
==
NdbDictionary
::
Column
::
Datetime
)
{
char
*
p
=
(
char
*
)
&
attr_data
->
u_int64_value
[
0
];
Uint64
x
;
memcpy
(
&
x
,
p
,
sizeof
(
Uint64
));
x
=
Twiddle64
(
x
);
memcpy
(
p
,
&
x
,
sizeof
(
Uint64
));
}
if
(
!
Twiddle
(
attr_desc
,
attr_data
,
attr_desc
->
arraySize
))
{
res
=
-
1
;
...
...
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