All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.hadoop.pig.udf.GenMaxKey Maven / Gradle / Ivy

package com.mongodb.hadoop.pig.udf;

import com.mongodb.hadoop.pig.udf.types.PigBoxedMaxKey;
import org.apache.pig.data.Tuple;

import java.io.IOException;

/**
 * Pig UDF that always returns MaxKey().
 */
public class GenMaxKey extends ByteArrayTypeEvalFunc {
    @Override
    public PigBoxedMaxKey exec(final Tuple input) throws IOException {
        return new PigBoxedMaxKey();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy