| From: | bricklen <bricklen(at)gmail(dot)com> |
|---|---|
| To: | Robert Brewer <fumanchu(at)aminus(dot)org> |
| Cc: | pgsql-bugs(at)postgresql(dot)org |
| Subject: | Re: SELECT '(1, nan, 3)'::cube; |
| Date: | 2011-03-16 16:18:02 |
| Message-ID: | AANLkTikobQLQUmS4+=qieC05Cw7MwnsWZ6uWNriyf=FG@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
On Tue, Mar 15, 2011 at 9:08 AM, Robert Brewer <fumanchu(at)aminus(dot)org> wrote:
> I'm working on a hypercube implementation in Postgres using contrib/cube
>
> and need to insert 80,000 rows in one go from Python. Doing so with
> INSERT, even multiple statements in one call, is pretty slow. I've been
> investigating if using COPY is faster.
When you say "multiple statements", do you mean
INSERT INTO foo (coords) VALUES
(cube(ARRAY[1, 'nan', 3]::float[])),
(cube(ARRAY[2, 'nan', 4]::float[])),
(cube(ARRAY[3, 'nan', 5]::float[])),
(cube(ARRAY[4, 'nan', 6]::float[]));
I was going to suggest trying that method, but if you already have
then please ignore me!
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Robert Brewer | 2011-03-16 18:14:31 | Re: SELECT '(1, nan, 3)'::cube; |
| Previous Message | Frederic Junod | 2011-03-16 15:25:21 | BUG #5934: postgresql.conf: optional equal sign |