From 1ca54f09bdd2e5b55083873f330c960c8c4ce3f2 Mon Sep 17 00:00:00 2001 From: xudong963 Date: Mon, 27 Feb 2023 11:11:48 +0800 Subject: [PATCH] fix: update out of date doc about datafusion --- rust/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 27ef2841b7..9aece98ff2 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -52,10 +52,10 @@ //! Querying from local filesystem: //! ```ignore //! use std::sync::Arc; -//! use datafusion::execution::context::ExecutionContext; +//! use datafusion::prelude::SessionContext; //! //! async { -//! let mut ctx = ExecutionContext::new(); +//! let mut ctx = SessionContext::new(); //! let table = deltalake::open_table("./tests/data/simple_table") //! .await //! .unwrap();