mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
partition_slice: operator<<: print the entire partition row limit
Not just the low bits.
This commit is contained in:
2
query.cc
2
query.cc
@@ -55,7 +55,7 @@ std::ostream& operator<<(std::ostream& out, const partition_slice& ps) {
|
||||
}
|
||||
out << ", options=" << format("{:x}", ps.options.mask()); // FIXME: pretty print options
|
||||
out << ", cql_format=" << ps.cql_format();
|
||||
out << ", partition_row_limit=" << ps._partition_row_limit_low_bits;
|
||||
out << ", partition_row_limit=" << ps.partition_row_limit();
|
||||
return out << "}";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user