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

gorsat.spark.GorSpecificInputPartition Maven / Gradle / Ivy

package gorsat.spark;

import org.apache.spark.sql.connector.read.InputPartition;

public class GorSpecificInputPartition implements InputPartition {
    int[] i;
    int[] j;

    GorSpecificInputPartition(int[] i, int[] j) {
        assert i.length == j.length;
        this.i = i;
        this.j = j;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy