| 248 | } |
| 249 | |
| 250 | void PrintRow(const TupleRow* row, const RowDescriptor& row_d, stringstream* out) { |
| 251 | *out << "["; |
| 252 | for (int i = 0; i < row_d.tuple_descriptors().size(); ++i) { |
| 253 | if (i != 0) *out << " "; |
| 254 | PrintTuple(row->GetTuple(i), *row_d.tuple_descriptors()[i], out); |
| 255 | } |
| 256 | *out << "]"; |
| 257 | } |
| 258 | |
| 259 | string PrintRow(const TupleRow* row, const RowDescriptor& row_d) { |
| 260 | stringstream out; |
no test coverage detected