// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB
//! Runtime counterpart to RQL's `expression/` planner module: that crate produces the representation, this one
//! runs it. Evaluation works on column buffers wherever possible, so the per-row interpreter cost is paid only
//! when an expression cannot be vectorised.
use Result;