Re: SELECT '(1, nan, 3)'::cube; - Mailing list pgsql-bugs

From Tom Lane
Subject Re: SELECT '(1, nan, 3)'::cube;
Date
Msg-id 432.1300208836@sss.pgh.pa.us
Whole thread Raw
In response to SELECT '(1, nan, 3)'::cube;  ("Robert Brewer" <fumanchu@aminus.org>)
Responses Re: SELECT '(1, nan, 3)'::cube;  ("Robert Brewer" <fumanchu@aminus.org>)
List pgsql-bugs
"Robert Brewer" <fumanchu@aminus.org> writes:
> 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. It is, but there's a problem:
> some of the cubes should include NaN. Writing:

>     INSERT INTO foo (coords) VALUES (cube(ARRAY[1, 'nan', 3]::float[]));

> ...works fine. But I can't find the magic incantation to do the same
> thing using COPY FROM.

cube_in doesn't accept either 'nan' or 'inf'.  It's probably a bug that
you can get those things into a cube value via cube(float8[]).  Or we
could see about upgrading the datatype to allow them, but that would
require looking at all its operations not just cube_in.  It seems pretty
likely to me that there are some other things in that module that won't
behave sanely with NaN, because the original author clearly never
thought about it.

I'd suggest rethinking your design to avoid needing NaN in a cube.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Robert Brewer"
Date:
Subject: SELECT '(1, nan, 3)'::cube;
Next
From: "Kevin Grittner"
Date:
Subject: Re: BUG #5929: ERROR: found toasted toast chunk for toast value 260340218 in pg_toast_260339342