MCPcopy Create free account
hub / github.com/apache/pig / deserialize_input

Function deserialize_input

src/python/streaming/controller.py:207–211  ·  view source on GitHub ↗
(input_str)

Source from the content-addressed store, hash-verified

205 sys.exit(exit_code)
206
207def deserialize_input(input_str):
208 if len(input_str) == 0:
209 return []
210
211 return [_deserialize_input(param, 0, len(param)-1) for param in input_str.split(WRAPPED_PARAMETER_DELIMITER)]
212
213def _deserialize_input(input_str, si, ei):
214 if ei - si < 1:

Callers 1

mainMethod · 0.85

Calls 2

_deserialize_inputFunction · 0.85
splitMethod · 0.80

Tested by

no test coverage detected