Improve Column instruction

This commit is contained in:
Pekka Enberg 2023-08-31 22:05:05 +03:00
parent b25f8c4daf
commit 4b714311b5
3 changed files with 35 additions and 12 deletions

View file

@ -59,7 +59,7 @@ impl Connection {
for i in 0..program.column_count() {
row.push(program.column(i).unwrap().to_string());
}
println!("{:?}", row);
println!("Row = {:?}", row);
}
vdbe::StepResult::IO => todo!(),
vdbe::StepResult::Done => break,