| 296 | } |
| 297 | |
| 298 | void HBaseScanNode::DebugString(int indentation_level, stringstream* out) const { |
| 299 | *out << string(indentation_level * 2, ' '); |
| 300 | *out << "HBaseScanNode(tupleid=" << tuple_id_ << " table=" << table_name_; |
| 301 | for(int i = 0; i < scan_range_vector_.size(); i++) { |
| 302 | *out << " region(" << i << "):"; |
| 303 | HBaseTableScanner::ScanRange scan_range = scan_range_vector_[i]; |
| 304 | scan_range.DebugString(0, out); |
| 305 | } |
| 306 | *out << ")" << endl; |
| 307 | for (int i = 0; i < children_.size(); ++i) { |
| 308 | children_[i]->DebugString(indentation_level + 1, out); |
| 309 | } |
| 310 | } |
no test coverage detected