From d583ef686074d8f4c729df3efd3aa5b2afc7623e Mon Sep 17 00:00:00 2001 From: Duarte Nunes Date: Wed, 5 Jul 2017 18:11:56 +0200 Subject: [PATCH] thrift/handler: Remove leftover debug artifacts Signed-off-by: Duarte Nunes Message-Id: <20170705161156.2307-1-duarte@scylladb.com> --- thrift/handler.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/thrift/handler.cc b/thrift/handler.cc index b0468def0f..bdac49970a 100644 --- a/thrift/handler.cc +++ b/thrift/handler.cc @@ -1565,11 +1565,9 @@ private: abort(); } void accept_new_row(const clustering_key_prefix& key, const query::result_row_view& static_row, const query::result_row_view& row) { - std::cout << "accept new row\n"; auto it = row.iterator(); auto cell = it.next_atomic_cell(); if (cell && _current_cell_limit > 0) { - std::cout << "has normal cell?!\n"; bytes column_name = composite::serialize_value(key.components(), _s.thrift().has_compound_comparator()).release_bytes(); Aggregator::on_column(_current_aggregation, column_name, *cell); _current_cell_limit -= 1; @@ -1577,14 +1575,11 @@ private: accept_partition_end(static_row); } void accept_new_row(const query::result_row_view& static_row, const query::result_row_view& row) { - std::cout << "accept new row static\n"; accept_partition_end(static_row); } void accept_partition_end(const query::result_row_view& static_row) { - std::cout << "accept row partition end\n"; auto it = static_row.iterator(); for (auto&& id : _slice.static_columns) { - std::cout << "going over the static cols\n"; auto cell = it.next_atomic_cell(); if (cell && _current_cell_limit > 0) { Aggregator::on_column(_current_aggregation, _s.static_column_at(id).name(), *cell);