This is an automated email from the ASF dual-hosted git repository.

xudong963 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new a40eb19  fix: replace  and  with  and (#2030)
a40eb19 is described below

commit a40eb19d95dada122d46770dee4d2dceb7cd1c10
Author: xudong.w <[email protected]>
AuthorDate: Thu Mar 17 22:30:00 2022 +0800

    fix: replace  and  with  and (#2030)
---
 datafusion/src/execution/context.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datafusion/src/execution/context.rs 
b/datafusion/src/execution/context.rs
index 7d8c444..33672ff 100644
--- a/datafusion/src/execution/context.rs
+++ b/datafusion/src/execution/context.rs
@@ -3036,8 +3036,8 @@ mod tests {
     #[tokio::test]
     async fn sql_create_schema() -> Result<()> {
         // the information schema used to introduce cyclic Arcs
-        let mut ctx = ExecutionContext::with_config(
-            ExecutionConfig::new().with_information_schema(true),
+        let mut ctx = SessionContext::with_config(
+            SessionConfig::new().with_information_schema(true),
         );
 
         // Create schema

Reply via email to