Register a pig script from InputStream source which is more general and extensible the pig script can be from local file, then you can use FileInputStream. or pig script can be in memory which you build it dynamically, the you can use ByteArrayInputStream even pig script can be in remote machine, wh
(InputStream in)
| 730 | * @throws IOException |
| 731 | */ |
| 732 | public void registerScript(InputStream in) throws IOException{ |
| 733 | registerScript(in, null, null); |
| 734 | } |
| 735 | |
| 736 | /** |
| 737 | * Register a pig script from InputStream source which is more general and extensible |
nothing calls this directly
no test coverage detected