1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

ADD array_ndims function

Author: Robert Haas <robertmhaas@gmail.com>
This commit is contained in:
Peter Eisentraut
2008-11-04 14:49:12 +00:00
parent 9beb9e761b
commit 254aecb704
7 changed files with 47 additions and 6 deletions

View File

@ -53,6 +53,9 @@ SELECT a[1:3],
d[1:1][1:2]
FROM arrtest;
SELECT array_ndims(a) AS a,array_ndims(b) AS b,array_ndims(c) AS c
FROM arrtest;
SELECT array_dims(a) AS a,array_dims(b) AS b,array_dims(c) AS c
FROM arrtest;