pub fn run_rows(
program: &Program,
table_rows: &[Vec<Value>],
) -> Result<Vec<Vec<Value>>>Expand description
Run a compiled program over table_rows (the materialized rows of the single
table the program scans, if any). A program counter walks the instruction
array so jumps and the Rewind/Next loop can branch; Column reads from
the cursor’s current row.