Define a Pig pipeline. @param pl Pig Latin definition of the pipeline. @return Pig object representing this pipeline. @throws IOException if the Pig Latin does not compile.
(String pl)
| 165 | * @throws IOException if the Pig Latin does not compile. |
| 166 | */ |
| 167 | public static Pig compile(String pl) throws IOException { |
| 168 | return compile(null, pl); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Define a named portion of a Pig pipeline. This allows it |