Register a query with the Pig runtime. The query is parsed and registered, but it is not executed until it is needed. @param query a Pig Latin expression to be evaluated. @param startLine line number of the query within the whole script @throws IOException
(String query, int startLine)
| 705 | * @throws IOException |
| 706 | */ |
| 707 | public void registerQuery(String query, int startLine) throws IOException { |
| 708 | currDAG.registerQuery(query, startLine, validateEachStatement, skipParseInRegisterForBatch); |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * Register a query with the Pig runtime. The query is parsed and registered, but it is not |
no outgoing calls