package
25.1.0+incompatible
Repository: https://github.com/cockroachdb/cockroach.git
Documentation: pkg.go.dev

# Functions

NewColBatchDirectScan creates a new ColBatchDirectScan operator.
NewColBatchScan creates a new ColBatchScan operator.
NewColIndexJoin creates a new ColIndexJoin operator.

# Variables

DirectScansEnabled is a cluster setting that controls whether the KV projection pushdown infrastructure can be used.
IndexJoinStreamerBatchSize determines the size of input batches used to construct a single lookup KV batch by the ColIndexJoin when it is using the Streamer API.

# Structs

ColBatchDirectScan is a colexecop.Operator that performs a scan of the given key spans using the COL_BATCH_RESPONSE scan format.
ColBatchScan is the colexecop.Operator implementation of TableReader.
ColIndexJoin operators are used to execute index joins (lookup joins that scan the primary index and discard input rows).

# Interfaces

ScanOperator combines common interfaces between operators that perform KV scans, such as ColBatchScan and ColIndexJoin.