public class MIN extends EvalFunc<java.lang.Double>
Math.min(double,double).
Given a tuple with two data atom it Returns the data
atom with smaller value.
value - Tuple containing two double.double
register math.jar;
A = load 'mydata' using PigStorage() as ( float1 );
B = foreach A generate float1, math.MIN(float1);
Math#MIN(double,double),
EvalFunc.SchemaTypelog, pigLogger, reporter, returnType| Constructor and Description |
|---|
MIN() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Double |
exec(Tuple input)
java level API
|
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.
|
allowCompileTimeCalculation, finish, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warnpublic java.lang.Double exec(Tuple input) throws 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<java.lang.Double>input - Schema of the inputpublic java.util.List<FuncSpec> getArgToFuncMapping() throws FrontendException
EvalFuncgetArgToFuncMapping in class EvalFunc<java.lang.Double>FrontendExceptionCopyright © 2007-2012 The Apache Software Foundation