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

Commit

Permalink
More skeleton code
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbooker committed Feb 26, 2024
1 parent d7930bf commit 1ffcf04
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion eggstrain/src/execution/operators/aggregate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,22 @@ impl Operator for Aggregate {
/// TODO docs
#[async_trait]
impl UnaryOperator for Aggregte {
todo!();
type In = RecordBatch;
type Out = RecordBatch;

fn into_unary(self) -> Arc<dyn UnaryOperator<In = Self::In, Out = Self::Out>> {
todo!();
}

async fn execute(
&self,
rx: broadcast::Receiver<Self::In>,
tx: broadcast::Sender<Self::Out>,
) {
let mut batches = vec![];
loop {
todo!();
}
todo!();
}
}

0 comments on commit 1ffcf04

Please sign in to comment.