Re: points and boxes - core dump

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: points and boxes - core dump
Дата
Msg-id 26504.1021391014@sss.pgh.pa.us
обсуждение исходный текст
Ответ на points and boxes - core dump  (Ewald Geschwinde <webmaster@geschwinde.net>)
Ответы Re: points and boxes - core dump  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Ewald Geschwinde <webmaster@geschwinde.net> writes:
> When using the field koord instead of a static box the system will core
> dump:

Hmm, I get garbage answers for the second and later rows, rather than
a core dump.

> Does anybody have an idea why the problem occurs?

I think the guilty party is the pfree() in dist_pb.  Given this set of
data close_pb will return its input Point pointer, so the net result is
dist_pb tries to pfree the supplied constant.  A bad move :-(.

I am strongly inclined to rip out *all* the pfrees of someone else's
result in geo_ops.c, not only that one.  Given the current handling of
memory management they are a waste of cycles and code space, and after
seeing this example I am not inclined to trust them not to be pfreeing
something they shouldn't.

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Hannu Krosing
Дата:
Сообщение: Re: [HACKERS] Bug #659: lower()/upper() bug on
Следующее
От: Tom Lane
Дата:
Сообщение: Re: points and boxes - core dump