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 @@ -95,11 +95,6 @@ class SnowflakeCompiler(AlchemyCompiler):
95
95
"returns" : ARRAY ,
96
96
"source" : "return Object.values(obj)" ,
97
97
},
98
- "ibis_udfs.public.object_from_arrays" : {
99
- "inputs" : {"ks" : ARRAY , "vs" : ARRAY },
100
- "returns" : OBJECT ,
101
- "source" : "return Object.assign(...ks.map((k, i) => ({[k]: vs[i]})))" ,
102
- },
103
98
"ibis_udfs.public.array_zip" : {
104
99
"inputs" : {"arrays" : ARRAY },
105
100
"returns" : ARRAY ,
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ def _timestamp_bucket(t, op):
293
293
ops .Map : fixed_arity (
294
294
lambda keys , values : sa .func .iff (
295
295
sa .func .is_array (keys ) & sa .func .is_array (values ),
296
- sa .func .ibis_udfs . public . object_from_arrays (keys , values ),
296
+ sa .func .arrays_to_object (keys , values ),
297
297
sa .null (),
298
298
),
299
299
2 ,
You can’t perform that action at this time.
0 commit comments