diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-24 10:34:55 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-24 10:34:55 +0100 |
commit | dc5a3cae2e38c772b1fc06a379c4941fb0dfd49b (patch) | |
tree | 147424473d48c997bddbdfe0dd2c887ff96ebff6 /ndb/include/ndbapi/NdbRecAttr.hpp | |
parent | be3b13749e9861d9afb60dcd82b3192e439466c3 (diff) | |
parent | 2f196ec77177209edc308b715e6fd61b119647ce (diff) | |
download | mariadb-git-dc5a3cae2e38c772b1fc06a379c4941fb0dfd49b.tar.gz |
Merge poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
ndb/include/ndbapi/NdbRecAttr.hpp:
Auto merged
ndb/src/ndbapi/NdbRecAttr.cpp:
Auto merged
Diffstat (limited to 'ndb/include/ndbapi/NdbRecAttr.hpp')
-rw-r--r-- | ndb/include/ndbapi/NdbRecAttr.hpp | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/ndb/include/ndbapi/NdbRecAttr.hpp b/ndb/include/ndbapi/NdbRecAttr.hpp index e2c58731c35..d1c29adef4f 100644 --- a/ndb/include/ndbapi/NdbRecAttr.hpp +++ b/ndb/include/ndbapi/NdbRecAttr.hpp @@ -309,15 +309,6 @@ NdbRecAttr::arraySize() const } inline -Int64 -NdbRecAttr::int64_value() const -{ - Int64 val; - memcpy(&val,theRef,8); - return val; -} - -inline Int32 NdbRecAttr::int32_value() const { @@ -339,15 +330,6 @@ NdbRecAttr::char_value() const } inline -Uint64 -NdbRecAttr::u_64_value() const -{ - Uint64 val; - memcpy(&val,theRef,8); - return val; -} - -inline Uint32 NdbRecAttr::u_32_value() const { @@ -369,24 +351,6 @@ NdbRecAttr::u_char_value() const } inline -float -NdbRecAttr::float_value() const -{ - float val; - memcpy(&val,theRef,sizeof(val)); - return val; -} - -inline -double -NdbRecAttr::double_value() const -{ - double val; - memcpy(&val,theRef,sizeof(val)); - return val; -} - -inline void NdbRecAttr::release() { |