diff --git a/core/vdbe.rs b/core/vdbe.rs index ea40a3794..fd9ebc3a9 100644 --- a/core/vdbe.rs +++ b/core/vdbe.rs @@ -236,8 +236,8 @@ fn print_insn(addr: usize, insn: &Insn) { 0, "".to_string(), ), - Insn::Column(column) => ("Column", 0, column.column, 0, "", 0, "".to_string()), - Insn::ResultRow => ("ResultRow", 0, 0, 0, "", 0, "".to_string()), + Insn::Column(column) => (" Column", 0, column.column, 0, "", 0, "".to_string()), + Insn::ResultRow => (" ResultRow", 0, 0, 0, "", 0, "".to_string()), Insn::NextAsync => ("NextAsync", 0, 0, 0, "", 0, "".to_string()), Insn::NextAwait => ("NextAwait", 0, 0, 0, "", 0, "".to_string()), Insn::Halt => ("Halt", 0, 0, 0, "", 0, "".to_string()),