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

xtdb.operator.SelectionSpec.kt Maven / Gradle / Ivy

The newest version!
package xtdb.operator

import org.apache.arrow.memory.BufferAllocator
import xtdb.vector.RelationReader

interface SelectionSpec {
    /**
     * @param params a single-row indirect relation containing the params for this invocation - maybe a view over a bigger param relation.
     */
    fun select(allocator: BufferAllocator, readRelation: RelationReader, schema: Map, params: RelationReader): IntArray
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy