Provide information on how a pig query will be executed. For now this information is very developer focussed, and probably not very useful to the average user. @param alias Name of alias to explain. @param stream PrintStream to write explanation to. @throws IOException if the requested alias cannot
(String alias,
PrintStream stream)
| 1133 | * @throws IOException if the requested alias cannot be found. |
| 1134 | */ |
| 1135 | public void explain(String alias, |
| 1136 | PrintStream stream) throws IOException { |
| 1137 | explain(alias, "text", true, false, stream, stream, null, null); |
| 1138 | } |
| 1139 | |
| 1140 | /** |
| 1141 | * Provide information on how a pig query will be executed. |