mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
mutation_partition: Print rows_entry's position instead of key
For dummy rows, _key doesn't reflect the right position. Message-Id: <1505317040-6783-1-git-send-email-tgrabiec@scylladb.com>
This commit is contained in:
committed by
Avi Kivity
parent
ca8e3c4a78
commit
65ca8eebb8
@@ -859,7 +859,7 @@ operator<<(std::ostream& os, const deletable_row& dr) {
|
||||
|
||||
std::ostream&
|
||||
operator<<(std::ostream& os, const rows_entry& re) {
|
||||
return fprint(os, "{rows_entry: cont=%d dummy=%d %s %s}", re.continuous(), re.dummy(), re._key, re._row);
|
||||
return fprint(os, "{rows_entry: cont=%d dummy=%d %s %s}", re.continuous(), re.dummy(), re.position(), re._row);
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
|
||||
Reference in New Issue
Block a user