You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using #sum over exclusively non-numeric values, nemo panics with the following error message:
thread 'main' panicked at nemo-physical/src/tabular/operations/aggregate.rs:308:25:
failed to compute aggregate result
This is because aggregates are currently implemented using the TrieScan interface, which does not allow for missing values.
Since the implementation of TrieScanAggregate is already complex enough, I would rather just rework how aggregates are computed using a technique similar to RowScans.
When using
#sum
over exclusively non-numeric values, nemo panics with the following error message:This is because aggregates are currently implemented using the
TrieScan
interface, which does not allow for missing values.Since the implementation of
TrieScanAggregate
is already complex enough, I would rather just rework how aggregates are computed using a technique similar toRowScan
s.This issue was first discussed here: #629.
The text was updated successfully, but these errors were encountered: