From 788bb5a3f8c71d954969f48fc4380e6bfb250fd2 Mon Sep 17 00:00:00 2001 From: Sreesh Maheshwar Date: Tue, 6 Jan 2026 01:03:40 -0800 Subject: [PATCH] Make `IcebergTableProvider::try_new` public --- crates/integrations/datafusion/src/table/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/integrations/datafusion/src/table/mod.rs b/crates/integrations/datafusion/src/table/mod.rs index 86a79611b3..2f7de88969 100644 --- a/crates/integrations/datafusion/src/table/mod.rs +++ b/crates/integrations/datafusion/src/table/mod.rs @@ -78,7 +78,7 @@ impl IcebergTableProvider { /// /// Loads the table once to get the initial schema, then stores the catalog /// reference for future metadata refreshes on each operation. - pub(crate) async fn try_new( + pub async fn try_new( catalog: Arc, namespace: NamespaceIdent, name: impl Into,