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
ArrayFill function can return lists with different dimensions:
postgres=# select array_fill(a, b) from fills;
array_fill
-----------------------------------
{{2,2}}
{5,5,5,5,5,5,5}
{{{{1}}}}
{{4,4,4},{4,4,4},{4,4,4},{4,4,4}}
(4 rows)
The standard return_type function cannot determine the type for 'dynamic' functions. because it prefers to assign one type to the whole column and does not take into account their arguments.