Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
connortsui20 committed Feb 25, 2024
1 parent 5d6092d commit ad04f61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion eggstrain/src/execution/operators/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ pub(crate) struct Filter {

/// TODO docs
impl Filter {
pub(crate) fn new(predicate: Arc<dyn PhysicalExpr>, children: Vec<Arc<dyn ExecutionPlan>>) -> Self {
pub(crate) fn new(
predicate: Arc<dyn PhysicalExpr>,
children: Vec<Arc<dyn ExecutionPlan>>,
) -> Self {
Self {
predicate,
children,
Expand Down
3 changes: 1 addition & 2 deletions eggstrain/src/execution/query_dag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ fn datafusion_execute(plan: Arc<dyn ExecutionPlan>, tx: broadcast::Sender<Record
continue;
}

tx.send(batch)
.expect("Unable to send rb to project node");
tx.send(batch).expect("Unable to send rb to project node");
}
}
});
Expand Down

0 comments on commit ad04f61

Please sign in to comment.