From c372b9676d3fe4aee09c7264d990ee283380b4e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Botond=20D=C3=A9nes?= Date: Thu, 18 Nov 2021 15:27:39 +0200 Subject: [PATCH] partition_slice: operator<<: print the entire partition row limit Not just the low bits. --- query.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query.cc b/query.cc index f8cdb23cad..cdee2e843b 100644 --- a/query.cc +++ b/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 << "}"; }