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
342a6c58
Commit
342a6c58
authored
Apr 13, 2007
by
gshchepa/uchum@gshchepa.localdomain
Browse files
Options
Browse Files
Download
Plain Diff
Merge gshchepa@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into gshchepa.localdomain:/home/uchum/work/bk-trees/5507-ci
parents
4b2aab14
7fd59a08
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
14 deletions
+12
-14
ndb/include/ndbapi/NdbRecAttr.hpp
ndb/include/ndbapi/NdbRecAttr.hpp
+0
-14
ndb/src/ndbapi/NdbRecAttr.cpp
ndb/src/ndbapi/NdbRecAttr.cpp
+12
-0
No files found.
ndb/include/ndbapi/NdbRecAttr.hpp
View file @
342a6c58
...
...
@@ -332,13 +332,6 @@ NdbRecAttr::int32_value() const
return
*
(
Int32
*
)
theRef
;
}
inline
Int32
NdbRecAttr
::
medium_value
()
const
{
return
sint3korr
((
unsigned
char
*
)
theRef
);
}
inline
short
NdbRecAttr
::
short_value
()
const
...
...
@@ -360,13 +353,6 @@ NdbRecAttr::u_32_value() const
return
*
(
Uint32
*
)
theRef
;
}
inline
Uint32
NdbRecAttr
::
u_medium_value
()
const
{
return
uint3korr
((
unsigned
char
*
)
theRef
);
}
inline
Uint16
NdbRecAttr
::
u_short_value
()
const
...
...
ndb/src/ndbapi/NdbRecAttr.cpp
View file @
342a6c58
...
...
@@ -519,3 +519,15 @@ NdbRecAttr::double_value() const
memcpy
(
&
val
,
theRef
,
sizeof
(
val
));
return
val
;
}
Int32
NdbRecAttr
::
medium_value
()
const
{
return
sint3korr
((
unsigned
char
*
)
theRef
);
}
Uint32
NdbRecAttr
::
u_medium_value
()
const
{
return
uint3korr
((
unsigned
char
*
)
theRef
);
}
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