mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 01:58:16 +00:00
Nit
This commit is contained in:
parent
9a8b94ef93
commit
a42b185ece
2 changed files with 4 additions and 5 deletions
|
@ -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) {
|
||||
|
|
|
@ -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(),
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue