Skip to content

Commit

Permalink
fixed compiler errors after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
redixhumayun committed Feb 16, 2025
1 parent f2e11a1 commit a6a8e37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/vdbe/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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={}",
Expand All @@ -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),
),
Expand Down

0 comments on commit a6a8e37

Please sign in to comment.