From 8f49024dd1facfee82042ddc550d6e1289b91141 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 10 Feb 2025 13:07:19 +0200 Subject: [PATCH] Fix build_text() call site to use new API --- core/vdbe/explain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vdbe/explain.rs b/core/vdbe/explain.rs index 7d3a82bca..79c96a44e 100644 --- a/core/vdbe/explain.rs +++ b/core/vdbe/explain.rs @@ -1234,7 +1234,7 @@ pub fn insn_to_str( *db as i32, *dest as i32, *cookie as i32, - OwnedValue::build_text(Rc::new("".to_string())), + OwnedValue::build_text(""), 0, "".to_string(), ),