Skip to content

Commit 171e222

Browse files
committed
Fixes CI
1 parent 21f7cbc commit 171e222

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datafusion/catalog/src/cte_worktable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ use arrow::datatypes::SchemaRef;
2525
use async_trait::async_trait;
2626
use datafusion_common::error::Result;
2727
use datafusion_expr::{Expr, LogicalPlan, TableProviderFilterPushDown, TableType};
28-
use datafusion_physical_plan::work_table::WorkTableExec;
2928
use datafusion_physical_plan::ExecutionPlan;
29+
use datafusion_physical_plan::work_table::WorkTableExec;
3030

3131
use crate::{ScanArgs, ScanResult, Session, TableProvider};
3232

datafusion/physical-plan/src/work_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ mod tests {
320320
.unwrap();
321321

322322
// We inject the work table
323-
let work_table = Arc::new(WorkTable::new());
323+
let work_table = Arc::new(WorkTable::new("wt".into()));
324324
let work_table_exec = work_table_exec
325325
.with_new_state(Arc::clone(&work_table) as _)
326326
.unwrap();

0 commit comments

Comments
 (0)