Question

SELECT UNNEST(ARRAY[1,2,3,4])

Lors de l'exécution de la requête ci-dessus, je suis l'erreur comme ceci:

ERROR: function unnest(integer[]) does not exist in postgresql.

J'utilise PostgreSQL 8.3 et j'ai installé le paquet _int.sql dans ma db pour le fonctionnement du tableau entier.

Comment résoudre cette erreur?

Était-ce utile?

La solution

unnest() is not part of the module intarray, but of standard PostgreSQL. However, you need version 8.4 or later for that.

So you can resolve this by upgrading to a more recent version, preferably the current version 9.1. See the versioning policy of the PostgreSQL project.

If you should be using Heroku's shared database, which currently uses version 8.3, they are looking into upgrading, too. Heroku Labs already offers 9.1.


As @Abdul commented, you can implement a poor man's unnest() in versions before PostgreSQL 8.4 yourself:

CREATE OR REPLACE FUNCTION unnest(anyarray)
  RETURNS SETOF anyelement AS
$BODY$
   SELECT $1[i] FROM generate_series(array_lower($1,1), array_upper($1,1)) i;
$BODY$ LANGUAGE sql IMMUTABLE;

However, be aware that this only works for one-dimensional arrays. (As opposed to PostgreSQL's unnest() which takes arrays with multiple dimensions):

SELECT unnest('{1,2,3,4}'::int[])  -- works
SELECT unnest('{{1,2},{3,4},{5,6}}'::int[])  -- fails! (returns all NULLs)

You could implement more functions for n-dimensional arrays:

CREATE OR REPLACE FUNCTION unnest2(anyarray) -- for 2-dimensional arrays
  RETURNS SETOF anyelement AS
$BODY$
SELECT $1[i][j]
FROM  (
    SELECT i, generate_series(array_lower($1,2), array_upper($1,2)) j
    FROM  (
        SELECT generate_series(array_lower($1,1), array_upper($1,1)) i
        ) x
    ) y;
$BODY$ LANGUAGE sql IMMUTABLE;

Call:

SELECT unnest2('{{1,2},{3,4},{5,6}}'::int[])  -- works!

You could also write a PL/pgSQL function that deals with multiple dimensions ...

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top