| 326 | } |
| 327 | |
| 328 | Status Scan(int max_row, int* num_rows) { |
| 329 | *num_rows = 0; |
| 330 | if (!parser_.IsTidy()) return Status("Parser is not tidy"); |
| 331 | RETURN_IF_ERROR(parser_.Parse(max_row, num_rows)); |
| 332 | return Status::OK(); |
| 333 | } |
| 334 | |
| 335 | Status Count(int max_row, int* num_rows) { |
| 336 | *num_rows = 0; |