partition_slice: operator<<: print the entire partition row limit

Not just the low bits.
This commit is contained in:
Botond Dénes
2021-11-18 15:27:39 +02:00
parent 3881de6353
commit c372b9676d

View File

@@ -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 << "}";
}