fix(sqlite): remove errant println!() in sqlite/explain.rs

This commit is contained in:
Austin Bonander 2020-07-27 22:16:26 -07:00 committed by Ryan Leckey
parent 7c32928ebc
commit 5e452d9e86
No known key found for this signature in database
GPG Key ID: F8AA68C235AB08C9

View File

@ -181,8 +181,6 @@ pub(super) async fn explain(
// r[p2] = <value of constant> // r[p2] = <value of constant>
r.insert(p2, opcode_to_type(&opcode)); r.insert(p2, opcode_to_type(&opcode));
n.insert(p2, n.get(&p2).copied().unwrap_or(false)); n.insert(p2, n.get(&p2).copied().unwrap_or(false));
println!("[x] <?> set column {} as INTEGER", p2);
} }
OP_NOT => { OP_NOT => {