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
DataFusion error: Error during planning: array_transform function requires 1 value arguments, got 0
249
249
250
250
251
251
query error DataFusion error: Error during planning: array_transform expected a list as first argument, got Int64
252
252
select array_transform(1, v -> v*2);
253
253
254
-
query error DataFusion error: Error during planning: array_transform expects a value followed by a lambda, got Lambda\(\(\)\) and Value\(List\(Field \{ data_type: Int64, nullable: true \}\)\)
254
+
query error DataFusion error: Error during planning: array_transform expects a value followed by a lambda, got Lambda\(\(\)\) and Value\(Field \{ name: "make_array\(Int64\(1\),Int64\(2\)\)", data_type: List\(Field \{ data_type: Int64, nullable: true \}\), nullable: true \}\)
255
255
select array_transform(v -> v*2, [1, 2]);
256
256
257
257
query error DataFusion error: Error during planning: lambda defined 3 params but UDF support only 2
0 commit comments