File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,6 @@ class SnowflakeCompiler(AlchemyCompiler):
110
110
return Object.assign(...keys.map((key, j) => ({[key]: arrays[j][i]})));
111
111
})""" ,
112
112
},
113
- "ibis_udfs.public.array_sort" : {
114
- "inputs" : {"array" : ARRAY },
115
- "returns" : ARRAY ,
116
- "source" : """return array.sort();""" ,
117
- },
118
113
"ibis_udfs.public.array_repeat" : {
119
114
# Integer inputs are not allowed because JavaScript only supports
120
115
# doubles
Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ def _timestamp_bucket(t, op):
420
420
ops .ArrayRemove : fixed_arity (sa .func .array_remove , 2 ),
421
421
ops .ArrayIntersect : fixed_arity (sa .func .array_intersection , 2 ),
422
422
ops .ArrayZip : _array_zip ,
423
- ops .ArraySort : unary (sa .func .ibis_udfs . public . array_sort ),
423
+ ops .ArraySort : unary (sa .func .array_sort ),
424
424
ops .ArrayRepeat : fixed_arity (sa .func .ibis_udfs .public .array_repeat , 2 ),
425
425
ops .StringSplit : fixed_arity (sa .func .split , 2 ),
426
426
# snowflake typeof only accepts VARIANT, so we cast
You can’t perform that action at this time.
0 commit comments