Gets an iterator on the content of one alias of a cached script. The script itself must be already be registered with registerScript().
(String alias)
| 227 | * must be already be registered with registerScript(). |
| 228 | */ |
| 229 | private Iterator<Tuple> getAliasFromCache(String alias) throws IOException, ParseException { |
| 230 | return getPigServer().openIterator(alias); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Gets an iterator on the content of the latest STORE alias of the script. |
no test coverage detected