backend crash with inet type

Поиск
Список
Период
Сортировка
От Chris Dunlop
Тема backend crash with inet type
Дата
Msg-id 199903210259.NAA14116@atlas.onthe.net.au
обсуждение исходный текст
Ответы Re: [BUGS] backend crash with inet type
Список pgsql-bugs
============================================================================
                        POSTGRESQL BUG REPORT TEMPLATE
============================================================================


Your name        : Chris Dunlop
Your email address    : chris@onthe.net.au


System Configuration
---------------------
  Architecture (example: Intel Pentium)      : Intel-Pentium

  Operating System (example: Linux 2.0.26 ELF)     : Linux 2.0.35

  PostgreSQL version (example: PostgreSQL-6.4)  : PostgreSQL-6.4.2, also snapshot-990320

  Compiler used (example:  gcc 2.8.0)        : gcc 2.7.2.3

Please enter a FULL description of your problem:
------------------------------------------------

Attempting to delete from a table by inet, with rows containing NULL inet
types results in a backend crash




Please describe a way to repeat the problem.   Please try to provide a
concise reproducible example, if at all possible:
----------------------------------------------------------------------

create table blah ( ip_address inet );
CREATE

insert into blah values('0.0.0.0');
INSERT 18761 1

delete from blah where ip_address = '111.111.111.111';
DELETE 0

insert into blah values(NULL);
INSERT 18762 1

delete from blah where ip_address = '111.111.111.111';
pqReadData() -- backend closed the channel unexpectedly.
        This probably means the backend terminated abnormally
        before or while processing the request.
We have lost the connection to the backend, so further processing is impossible.  Terminating.




If you know how this problem might be fixed, list the solution below:
---------------------------------------------------------------------

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

Предыдущее
От: Marcin Polak
Дата:
Сообщение: BUG REPORT
Следующее
От: "Faisal Haji Mustaffa"
Дата:
Сообщение: need help....