Added cast for numeric[]

This commit is contained in:
Andrew Kane
2021-06-11 03:32:47 -07:00
parent 77d54333f6
commit 154e4334fb
6 changed files with 28 additions and 0 deletions

View File

@@ -6,6 +6,12 @@ SELECT ARRAY[1,2,3]::vector;
[1,2,3]
(1 row)
SELECT ARRAY[1.0,2.0,3.0]::vector;
array
---------
[1,2,3]
(1 row)
SELECT ARRAY[1,2,3]::float4[]::vector;
array
---------