Revert "sstables: fix a bug in data_consume_rows_context::read_64"

This reverts commit f80f00476c.

This is the vrong version of the patch.
This commit is contained in:
Tomasz Grabiec
2015-05-08 11:16:10 +02:00
parent f80f00476c
commit e4ef356cc3

View File

@@ -162,7 +162,7 @@ private:
}
inline void read_64(temporary_buffer<char>& data, state next_state) {
if (data.size() >= sizeof(uint64_t)) {
_u64 = consume_be<uint64_t>(data);
_u32 = consume_be<uint64_t>(data);
} else {
std::copy(data.begin(), data.end(), _read_int.bytes);
_pos = data.size();