// SPDX-License-Identifier: BUSL-1.1
//! Columnar base scan handler.
//!
//! Reads rows from the `MutationEngine` memtable, applies projection,
//! WHERE filter predicates, and limit. Used by plain columnar and spatial
//! collections.
pub use emit_column_value;
pub use ColumnarScanParams;