Backend crashes with notification rule

From: Bernd Helmle <mailings(at)oopsware(dot)de>
To: PostgreSQL-Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Backend crashes with notification rule
Date: 2004-08-07 15:34:54
Message-ID: 1652BA50BBA791A313A355B6@sparkey.oopsware.intra
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I have this on 8.0dev (checked out last friday):

yomama=# SELECT version();
version
---------------------------------------------------------------------------
PostgreSQL 8.0devel on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.4.0
(1 Zeile)

yomama=# CREATE TABLE test (test text);
CREATE TABLE

yomama=# CREATE RULE rule_insert_test AS ON INSERT TO test DO NOTIFY
test_notification;
CREATE RULE

yomama=# INSERT INTO test VALUES ('test');
Server beendete die Verbindung unerwartet
Das heißt wahrscheinlich, daß der Server abnormal beendete
bevor oder während die Anweisung bearbeitet wurde.
Die Verbindung zum Server wurde verloren. Versuche Reset: Fehlgeschlagen.
!>

With assert check enabled, i got this in the logfile:

TRAP: FailedAssertion("!(n < list->length)", File: "list.c", Line: 392)
LOG: server process (PID 18637) was terminated by signal 6
LOG: terminating any other active server processes

Sorry for the german locale .....

--
Bernd

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2004-08-07 16:43:20 Re: [PATCHES] UNICODE characters above 0x10000
Previous Message Jan Wieck 2004-08-07 14:24:34 Re: Updateable Views?