| 933 | } |
| 934 | |
| 935 | void HdfsScanner::LogRowParseError() { |
| 936 | const string& s = Substitute("Error parsing row: file: $0, before offset: $1", |
| 937 | stream_->filename(), stream_->file_offset()); |
| 938 | state_->LogError(ErrorMsg(TErrorCode::GENERAL, s)); |
| 939 | } |
| 940 | |
| 941 | void HdfsScanner::ReportColumnParseError(const SlotDescriptor* desc, |
| 942 | const char* data, int len) { |
nothing calls this directly
no test coverage detected