Package org.apache.hadoop.hive.ql.udf

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

Related Classes of org.apache.hadoop.hive.ql.udf.UDFHex

Copyright © 2018 www.massapicom. 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.