Can radix_tree_update be slightly simplified?
Open
DBSP core
question
- Dominant language
- Rust
- Stars
- 2.1k
- Forks
- 153
- Avg merge
- 2d 11h
- Merged PRs (30d)
- 129
Description
**Issue by [mihaibudiu](https://github.com/mihaibudiu)**
_Thu Nov 24 19:46:23 2022_
_Originally opened as https://github.com/vmware/database-stream-processor/issues/238_
----
```
let agg = if input.key_valid() && input.key() == input_delta.key() {
aggregator.aggregate(&mut CursorGroup::new(&mut input, ()))
} else {
None
};
```
The spec of the aggregate function seems it to require None anyway for an empty input set.
Contributor guide
Assessment
This issue has not been assessed yet.