| 32 | namespace impala { |
| 33 | |
| 34 | string PrintNode(const orc::Type* node) { |
| 35 | return Substitute("$0 column (ORC id=$1)", node->toString(), node->getColumnId()); |
| 36 | } |
| 37 | |
| 38 | bool OrcRowValidator::IsRowBatchValid() const { |
| 39 | if (write_ids_ == nullptr || write_ids_->numElements == 0) return true; |
no test coverage detected