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
As a workaround (does not work in INSERT VALUES) I introduced the AS_ARRAY UDF. I think a valuable improvement would be to also allow INSERT VALUES to use UDFs.
We do not currently have support for creating instances of ARRAYs. Our SQL grammar does have rules for this:
ARRAY[1,2,3]
should create an array.We should support arrays being created with literals, e.g.
ARRAY[1,2,3]
and with expressions, e.g.ARRAY[col1, 1 + 2, col3 / col4, max(col5, col6)]
.We should support constructed arrays being used in:
SELECT ARRAY[col0, col1] FROM ...
WHERE col0 = ARRAY[0,2]
GROUP BY ARRAY[col0, col1]
The text was updated successfully, but these errors were encountered: