Re: SELECT '(1, nan, 3)'::cube;

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: SELECT '(1, nan, 3)'::cube;
Дата
Msg-id 432.1300208836@sss.pgh.pa.us
обсуждение исходный текст
Ответ на SELECT '(1, nan, 3)'::cube;  ("Robert Brewer" <fumanchu@aminus.org>)
Ответы Re: SELECT '(1, nan, 3)'::cube;  ("Robert Brewer" <fumanchu@aminus.org>)
Список 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 по дате отправления:

Предыдущее
От: "Robert Brewer"
Дата:
Сообщение: SELECT '(1, nan, 3)'::cube;
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: BUG #5929: ERROR: found toasted toast chunk for toast value 260340218 in pg_toast_260339342