| 651 | } |
| 652 | |
| 653 | void HashTable::DebugStringTuple(stringstream& ss, HtData& htdata, |
| 654 | const RowDescriptor* desc) { |
| 655 | if (stores_tuples_) { |
| 656 | ss << "(" << htdata.tuple << ")"; |
| 657 | } else { |
| 658 | ss << "(" << htdata.flat_row << ")"; |
| 659 | } |
| 660 | if (desc != NULL) { |
| 661 | Tuple* row[num_build_tuples_]; |
| 662 | ss << " " << PrintRow(GetRow(htdata, reinterpret_cast<TupleRow*>(row)), *desc); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | string HashTable::DebugString(bool skip_empty, bool show_match, |
| 667 | const RowDescriptor* desc) { |
nothing calls this directly
no test coverage detected