Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
seonWKim committed Dec 22, 2024
1 parent 9a8b94e commit a42b185
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions core/storage/btree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1754,9 +1754,8 @@ impl Cursor for BTreeCursor {
}

fn delete(&mut self) -> Result<CursorResult<()>> {
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) {
Expand Down
4 changes: 2 additions & 2 deletions core/vdbe/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
),
Expand All @@ -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(),
),
Expand Down

0 comments on commit a42b185

Please sign in to comment.