We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a0bdb commit faccdabCopy full SHA for faccdab
datafusion/spark/src/function/array/shuffle.rs
@@ -47,7 +47,7 @@ impl Default for SparkShuffle {
47
impl SparkShuffle {
48
pub fn new() -> Self {
49
Self {
50
- signature: Signature::any(1, Volatility::Volatile),
+ signature: Signature::arrays(1, None, Volatility::Volatile),
51
}
52
53
@@ -98,7 +98,7 @@ pub fn array_shuffle_inner(arg: &[ArrayRef]) -> Result<ArrayRef> {
98
99
100
101
-fn general_array_shuffle<O: OffsetSizeTrait + TryFrom<i64>>(
+fn general_array_shuffle<O: OffsetSizeTrait>(
102
array: &GenericListArray<O>,
103
field: &FieldRef,
104
) -> Result<ArrayRef> {
0 commit comments