Make EXPLAIN output more similar to SQLite

This commit is contained in:
Pekka Enberg
2023-08-27 21:21:42 +03:00
parent 9d7286bde0
commit b40438f778

View File

@@ -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()),