public class FloatMax extends EvalFunc<java.lang.Float>
Math.max(int,int)
for computing the
the max value of the arguments. The returned value will be an int which is
the maximum of the inputs.
value
- 2 int values
.int
max value of two input
register math.jar;
A = load 'mydata' using PigStorage() as ( float1 );
B = foreach A generate float1, math.max(float1);
Math#max(double)
,
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
FloatMax() |
Modifier and Type | Method and Description |
---|---|
java.lang.Float |
exec(Tuple input)
java level API
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
allowCompileTimeCalculation, finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public java.lang.Float 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.Float>
input
- Schema of the inputCopyright © 2007-2012 The Apache Software Foundation