diff --git a/core/storage/btree.rs b/core/storage/btree.rs index d500e7727..b2761a5aa 100644 --- a/core/storage/btree.rs +++ b/core/storage/btree.rs @@ -1754,9 +1754,8 @@ impl Cursor for BTreeCursor { } fn delete(&mut self) -> Result> { - println!("ROWID: {:?}", self.rowid.borrow()); - return Ok(CursorResult::Ok(())); - unimplemented!() + debug!("rowid: {:?}", self.rowid.borrow()); + Ok(CursorResult::Ok(())) } fn set_null_flag(&mut self, flag: bool) { diff --git a/core/vdbe/explain.rs b/core/vdbe/explain.rs index 94d89f94c..a5e4f91bd 100644 --- a/core/vdbe/explain.rs +++ b/core/vdbe/explain.rs @@ -839,7 +839,7 @@ pub fn insn_to_str( *cursor_id as i32, 0, 0, - OwnedValue::Text(Rc::new("".to_string())), + OwnedValue::build_text(Rc::new("".to_string())), 0, "".to_string(), ), @@ -848,7 +848,7 @@ pub fn insn_to_str( *cursor_id as i32, 0, 0, - OwnedValue::Text(Rc::new("".to_string())), + OwnedValue::build_text(Rc::new("".to_string())), 0, "".to_string(), ),