From e31435e416e288fb6e657cc35b8fb568253f3aa6 Mon Sep 17 00:00:00 2001 From: RS2007 Date: Sat, 26 Jul 2025 17:38:29 +0530 Subject: [PATCH] Typo fix --- core/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/lib.rs b/core/lib.rs index 59a90a8a0..c925049b2 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -875,7 +875,6 @@ impl Connection { } #[instrument(skip_all, level = Level::INFO)] - pub fn prepare(self: &Arc, sql: impl AsRef) -> Result { pub fn prepare_execute_batch(self: &Arc, sql: impl AsRef) -> Result<()> { if self.closed.get() { return Err(LimboError::InternalError("Connection closed".to_string()));