From b40438f778770e567e9e1ceb1e42d761ea91f4f1 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Sun, 27 Aug 2023 21:21:42 +0300 Subject: [PATCH] Make EXPLAIN output more similar to SQLite --- core/vdbe.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()),