Re: Splitting text column to multiple rows - Mailing list pgsql-general

From Andrus
Subject Re: Splitting text column to multiple rows
Date
Msg-id C0A3EB70B9C347DF863C660F33ADE4E3@andrusnotebook
Whole thread Raw
In response to Re: Splitting text column to multiple rows  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Splitting text column to multiple rows  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
I changed unction name and tried:

CREATE OR REPLACE FUNCTION unnest21(anyarray)
RETURNS SETOF anyelement as $$
  SELECT $1[i] FROM generate_series(1,4) g(i)
$$ LANGUAGE sql;

select unnest21(string_to_array('23,2,3,4,5',','));

In this case it returns only 4 rows.
No idea what is happening.

Andrus.

----- Original Message -----
From: "Tom Lane" <tgl@sss.pgh.pa.us>
To: "Andrus" <kobruleht2@hot.ee>
Cc: "Pavel Stehule" <pavel.stehule@gmail.com>;
<pgsql-general@postgresql.org>
Sent: Monday, March 29, 2010 6:00 PM
Subject: Re: [GENERAL] Splitting text column to multiple rows


> "Andrus" <kobruleht2@hot.ee> writes:
>> Pavel,
>>> pavel@postgres:5481=# select unnest(string_to_array('23,2,3,4,5',','));
>>> unnest
>>> --------
>>> 23
>>> 2
>>> 3
>>> 4
>>> (4 rows)
>
>> Result is wrong: it must contain 5 rows.
>
> Surely that's a copy-and-paste mistake?  I get 5 rows from this example.
>
> regards, tom lane


pgsql-general by date:

Previous
From: "Andrus"
Date:
Subject: Re: Splitting text column to multiple rows
Next
From: Leif Biberg Kristensen
Date:
Subject: Re: insert into test_b (select * from test_a) with different column order