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

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 1ea6545868 Minor: Fix Failing TPC-DS Test (#11331)
1ea6545868 is described below

commit 1ea654586868252eb68ccca84416da1bca88bfbf
Author: Berkay Şahin <[email protected]>
AuthorDate: Mon Jul 8 15:07:17 2024 +0300

    Minor: Fix Failing TPC-DS Test (#11331)
    
    * Update sql_planner.rs
    
    * Update sql_planner.rs
---
 datafusion/core/benches/sql_planner.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/core/benches/sql_planner.rs 
b/datafusion/core/benches/sql_planner.rs
index c0e02d388a..00f6d59167 100644
--- a/datafusion/core/benches/sql_planner.rs
+++ b/datafusion/core/benches/sql_planner.rs
@@ -82,7 +82,7 @@ fn register_defs(ctx: SessionContext, defs: Vec<TableDef>) -> 
SessionContext {
     defs.iter().for_each(|TableDef { name, schema }| {
         ctx.register_table(
             name,
-            Arc::new(MemTable::try_new(Arc::new(schema.clone()), 
vec![]).unwrap()),
+            Arc::new(MemTable::try_new(Arc::new(schema.clone()), 
vec![vec![]]).unwrap()),
         )
         .unwrap();
     });


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to