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
run GroupbyExec
keys/aggregates are not partitionable: running default HASH AGGREGATION
thread 'main' panicked at src/issuex.rs:14:10:
called `Result::unwrap()` on an `Err` value: ComputeError(ErrString("grouping on list type is only allowed if the inner type is numeric"))
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
It would be nice if lists of strings could be used as hash join keys.
The text was updated successfully, but these errors were encountered:
I'm looking for this feature as well (and similarly, joins on list columns). Is there a reason it is not implemented? It seems that there is hashing functionality implemented, so it should be possible to simply hash the list column and join on that, right?
Description
The following code currently panics with the following verbose output:
It would be nice if lists of strings could be used as hash join keys.
The text was updated successfully, but these errors were encountered: