correction of manual merge

parent d4982247
...@@ -3159,15 +3159,15 @@ void ndb_unpack_record(TABLE *table, NdbValue *value, ...@@ -3159,15 +3159,15 @@ void ndb_unpack_record(TABLE *table, NdbValue *value,
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
/* lsw is stored first */ /* lsw is stored first */
Uint32 *buf= (Uint32 *)(*value).rec->aRef(); Uint32 *buf= (Uint32 *)(*value).rec->aRef();
((Field_bit *) *field)->store((((longlong)*buf) field_bit->Field_bit::store((((longlong)*buf)
& 0x000000000FFFFFFFF) & 0x000000000FFFFFFFF)
| |
((((longlong)*(buf+1)) << 32) ((((longlong)*(buf+1)) << 32)
& 0xFFFFFFFF00000000), & 0xFFFFFFFF00000000),
TRUE); TRUE);
#else #else
((Field_bit *) *field)->store((longlong) field_bit->Field_bit::store((longlong)
(*value).rec->u_64_value(), TRUE); (*value).rec->u_64_value(), TRUE);
#endif #endif
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment