xtdb.operator.SelectionSpec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtdb-core Show documentation
Show all versions of xtdb-core Show documentation
An open source document database with bitemporal graph queries
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