From e4ef356cc3ae073029a42a46efdaaf018d5ddc6b Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Fri, 8 May 2015 11:16:10 +0200 Subject: [PATCH] Revert "sstables: fix a bug in data_consume_rows_context::read_64" This reverts commit f80f00476c6c3910dff66433c6b55fc2e3129bf4. This is the vrong version of the patch. --- sstables/row.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sstables/row.cc b/sstables/row.cc index 33187f78c8..5c79ff59da 100644 --- a/sstables/row.cc +++ b/sstables/row.cc @@ -162,7 +162,7 @@ private: } inline void read_64(temporary_buffer& data, state next_state) { if (data.size() >= sizeof(uint64_t)) { - _u64 = consume_be(data); + _u32 = consume_be(data); } else { std::copy(data.begin(), data.end(), _read_int.bytes); _pos = data.size();