This commit is contained in:
김선우 2024-12-22 14:22:10 +09:00
parent 9a8b94ef93
commit a42b185ece
2 changed files with 4 additions and 5 deletions

View file

@ -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) {

View file

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