Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-17 Thread Dmitriy Igrishin
2011/2/16 Merlin Moncure > On Tue, Feb 15, 2011 at 7:51 AM, Dmitriy Igrishin > wrote: > > > > > > 2011/2/15 Merlin Moncure > >> > >> On Mon, Feb 14, 2011 at 8:37 AM, Dmitriy Igrishin > >> wrote: > >> > 2011/2/14 Merlin Moncure > >> >> > >> >> On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson > >

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-15 Thread Merlin Moncure
On Tue, Feb 15, 2011 at 7:51 AM, Dmitriy Igrishin wrote: > > > 2011/2/15 Merlin Moncure >> >> On Mon, Feb 14, 2011 at 8:37 AM, Dmitriy Igrishin >> wrote: >> > 2011/2/14 Merlin Moncure >> >> >> >> On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson >> >> >> >> wrote: >> >> > Dear PostgreSQL communit

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-15 Thread Dmitriy Igrishin
2011/2/15 Merlin Moncure > On Mon, Feb 14, 2011 at 8:37 AM, Dmitriy Igrishin > wrote: > > 2011/2/14 Merlin Moncure > >> > >> On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson > > >> wrote: > >> > Dear PostgreSQL community, > >> > > >> > Please consider the following minimal example: > >> > > >> >

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-14 Thread Merlin Moncure
On Mon, Feb 14, 2011 at 8:37 AM, Dmitriy Igrishin wrote: > 2011/2/14 Merlin Moncure >> >> On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson >> wrote: >> > Dear PostgreSQL community, >> > >> > Please consider the following minimal example: >> > >> > CREATE TABLE example (row_id SERIAL, value TEXT);

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-14 Thread Dmitriy Igrishin
2011/2/14 Merlin Moncure > On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson > wrote: > > Dear PostgreSQL community, > > > > Please consider the following minimal example: > > > > CREATE TABLE example (row_id SERIAL, value TEXT); > > INSERT INTO example(value) VALUES ('val1'); > > INSERT INTO examp

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-14 Thread Merlin Moncure
On Mon, Feb 7, 2011 at 3:15 PM, Julia Jacobson wrote: > Dear PostgreSQL community, > > Please consider the following minimal example: > > CREATE TABLE example (row_id SERIAL, value TEXT); > INSERT INTO example(value) VALUES ('val1'); > INSERT INTO example(value) VALUES ('val2'); > INSERT INTO exam

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-12 Thread Dmitriy Igrishin
Hey, 2011/2/8 Edoardo Panfili > On 07/02/11 22.15, Julia Jacobson wrote: > >> Dear PostgreSQL community, >> >> Please consider the following minimal example: >> >> CREATE TABLE example (row_id SERIAL, value TEXT); >> INSERT INTO example(value) VALUES ('val1'); >> INSERT INTO example(value) VALUE

Re: [GENERAL] SELECT INTO array[i] with PL/pgSQL

2011-02-07 Thread Edoardo Panfili
On 07/02/11 22.15, Julia Jacobson wrote: Dear PostgreSQL community, Please consider the following minimal example: CREATE TABLE example (row_id SERIAL, value TEXT); INSERT INTO example(value) VALUES ('val1'); INSERT INTO example(value) VALUES ('val2'); INSERT INTO example(value) VALUES ('val3')