public class STRSPLIT extends EvalFunc<Tuple>
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
STRSPLIT() |
Modifier and Type | Method and Description |
---|---|
boolean |
allowCompileTimeCalculation()
Whether the UDF should be evaluated at compile time if all inputs are constant.
|
Tuple |
exec(Tuple input)
Wrapper around Java's String.split
|
java.util.List<FuncSpec> |
getArgToFuncMapping()
Allow a UDF to specify type specific implementations of itself.
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
finish, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public Tuple exec(Tuple input) throws java.io.IOException
exec
in class EvalFunc<Tuple>
input
- tuple; first column is assumed to have a string to split;
the optional second column is assumed to have the delimiter or regex to split on;java.io.IOException
public Schema outputSchema(Schema input)
EvalFunc
The default implementation interprets the OutputSchema
annotation,
if one is present. Otherwise, it returns null
(no known output schema).
outputSchema
in class EvalFunc<Tuple>
input
- Schema of the inputpublic java.util.List<FuncSpec> getArgToFuncMapping() throws FrontendException
EvalFunc
getArgToFuncMapping
in class EvalFunc<Tuple>
FrontendException
public boolean allowCompileTimeCalculation()
EvalFunc
allowCompileTimeCalculation
in class EvalFunc<Tuple>
Copyright © 2007-2012 The Apache Software Foundation