Package org.apache.pig.piggybank.evaluation.math

Examples of org.apache.pig.piggybank.evaluation.math.MAX.exec()


          EvalFunc<DataAtom> MAX = new MAX();
          Tuple tup = new Tuple(2);
          tup.setField(0, -0.5);
          tup.setField(1,0.6);
          DataAtom output = new DataAtom();
          MAX.exec(tup, output);
          double expected = Math.max(-0.5,0.6);
          double actual = (new Double(output.strval())).doubleValue();
          assertEquals(actual, expected, delta);
      }
  
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.