Former-commit-id: b83788e0c11efa77b74a953cfd3b85432c85d5c3
pull/191/head
groot 2019-05-29 11:24:30 +08:00
parent de1d9fb655
commit 369ce2d76d
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ namespace {
<< " search result:" << std::endl;
for(auto& item : result.query_result_arrays) {
std::cout << "\t" << std::to_string(item.id) << "\tscore:" << std::to_string(item.score);
for(auto& attri : item.column_map) {
std::cout << "\t" << attri.first << ":" << attri.second;
for(auto& attribute : item.column_map) {
std::cout << "\t" << attribute.first << ":" << attribute.second;
}
std::cout << std::endl;
}