From 5f9c0ca1e04c29417c30c63813b18ca8e7253fb2 Mon Sep 17 00:00:00 2001 From: Michael-J-Ward Date: Sat, 10 Aug 2024 15:35:20 -0500 Subject: [PATCH] update imports in catalog Catlog API was extracted to a separate crate. Ref: https://github.com/apache/datafusion/pull/11516 --- src/catalog.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catalog.rs b/src/catalog.rs index 49fe1404..d6ff2fb2 100644 --- a/src/catalog.rs +++ b/src/catalog.rs @@ -25,7 +25,7 @@ use crate::errors::DataFusionError; use crate::utils::wait_for_future; use datafusion::{ arrow::pyarrow::ToPyArrow, - catalog::{schema::SchemaProvider, CatalogProvider}, + catalog::{SchemaProvider, CatalogProvider}, datasource::{TableProvider, TableType}, };