Details
-
Sub-task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
Should we add support for something like:
CAST(10 AS ARRAY(INT()) which will result in [10] ?
PostgreSQL for example doesn't support it:
postgres=# select 1::integer[];
ERROR: cannot cast type integer to integer[]
LINE 1: select 1::integer[];