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

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

package com.mongodb.hadoop.pig.udf;

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

import java.io.IOException;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy