From 24e9f2e4d18a2d7a8ef8bb0778e5ba685b494403 Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Mon, 26 Jan 2026 12:36:43 -0800 Subject: [PATCH] chore: fix clippy when remote flag is not set --- rust/lancedb/src/connection.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/lancedb/src/connection.rs b/rust/lancedb/src/connection.rs index 9078f3873..cd2c02394 100644 --- a/rust/lancedb/src/connection.rs +++ b/rust/lancedb/src/connection.rs @@ -892,6 +892,7 @@ pub struct ConnectBuilder { embedding_registry: Option>, } +#[cfg(feature = "remote")] const ENV_VARS_TO_STORAGE_OPTS: [(&str, &str); 1] = [("AZURE_STORAGE_ACCOUNT_NAME", "azure_storage_account_name")];