Bind this to a set of variables. Values must be provided for all Pig Latin parameters. @param vars map of variables to bind. Keys should be parameters defined in the Pig Latin. Values should be strings that provide values for those parameters. They can be either constants or variables from the ho
(Map<String, Object> vars)
| 228 | * Pig Latin parameter or if they contain unsupported types. |
| 229 | */ |
| 230 | public BoundScript bind(Map<String, Object> vars) throws IOException { |
| 231 | return new BoundScript(replaceParameters(script, vars), scriptContext, name); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Bind this to multiple sets of variables. This will |
no test coverage detected