From a6a8e37cfd6d0209a72f505233c458b3be3700ac Mon Sep 17 00:00:00 2001 From: Zaid Humayun Date: Sun, 16 Feb 2025 14:47:57 +0530 Subject: [PATCH] fixed compiler errors after rebase --- core/vdbe/explain.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/vdbe/explain.rs b/core/vdbe/explain.rs index 750c79f42..6733ebb45 100644 --- a/core/vdbe/explain.rs +++ b/core/vdbe/explain.rs @@ -1110,7 +1110,7 @@ pub fn insn_to_str( *root as i32, *former_root_reg as i32, *is_temp as i32, - OwnedValue::build_text(Rc::new("".to_string())), + OwnedValue::build_text(&Rc::new("".to_string())), 0, format!( "root iDb={} former_root={} is_temp={}", @@ -1127,7 +1127,7 @@ pub fn insn_to_str( *db as i32, 0, 0, - OwnedValue::build_text(Rc::new(table_name.clone())), + OwnedValue::build_text(&Rc::new(table_name.clone())), 0, format!("DROP TABLE {}", table_name), ),