Define a Pig pipeline based on Pig Latin in a separate file. @param filename File to read Pig Latin from. This must be a purely Pig Latin file. It cannot contain host language constructs in it. @return Pig object representing this pipeline. @throws IOException if the Pig Latin does not compile or
(String filename)
| 194 | * cannot be found. |
| 195 | */ |
| 196 | public static Pig compileFromFile(String filename) |
| 197 | throws IOException { |
| 198 | return compileFromFile(null, filename); |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Define a named Pig pipeline based on Pig Latin in a separate file. |
no test coverage detected