MCPcopy Create free account
hub / github.com/apache/pig / registerQuery

Method registerQuery

src/org/apache/pig/PigServer.java:707–709  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls