public class LongMin extends EvalFunc<java.lang.Long>
Math.min(long,long)
for computing the
the min value of the arguments. The returned value will be an nt which is
the minimum of the inputs.
value
- 2 long values
.long
min value of two input
register math.jar;
A = load 'mydata' using PigStorage() as ( float1 );
B = foreach A generate float1, math.min(float1);
Math#min(double)
,
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
LongMin() |
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
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.Long 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.Long>
input
- Schema of the inputCopyright © 2007-2012 The Apache Software Foundation