Examples of UDFHex


Examples of org.apache.hadoop.hive.ql.udf.UDFHex

import org.apache.hadoop.hive.ql.udf.UDFHex;

// Implement vectorized function Hex(string) returning string
public class StringHex extends StringUnaryUDF {
  StringHex(int colNum, int outputColumn) {
    super(colNum, outputColumn, (IUDFUnaryString) new UDFHex());
  }
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.