Discards a batch of Pig commands. @throws FrontendException
()
| 529 | * @throws FrontendException |
| 530 | */ |
| 531 | public void discardBatch() throws FrontendException { |
| 532 | if (currDAG == null || !isBatchOn()) { |
| 533 | int errCode = 1083; |
| 534 | String msg = "setBatchOn() must be called first."; |
| 535 | throw new FrontendException(msg, errCode, PigException.INPUT); |
| 536 | } |
| 537 | |
| 538 | currDAG = graphs.pop(); |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * Add a path to be skipped while automatically shipping binaries for |