Re: pg_connect dumps core - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: pg_connect dumps core
Date
Msg-id 9431.983723500@sss.pgh.pa.us
Whole thread Raw
In response to pg_connect dumps core  (Matthias Teege <matthias@mteege.de>)
List pgsql-interfaces
Matthias Teege <matthias@mteege.de> writes:
> tclsh8.3
> % load libpgtcl.so
> % pg_connect m3
> Connection to database failed
> FATAL 1:  Database "m3" does not exist in the system catalog.
> % pg_connect m2
> Segmentation fault (core dumped)

> in postgresql errlog there are:

> FATAL 1:  Database "m3" does not exist in the system catalog.
> pq_recvbuf: unexpected EOF on client connection 

Strange.  Evidently it's getting as far as opening the connection
(pq_recvbuf is used in the backend, not the postmaster), but then
crashing after that.  I can't see any reason why it would work for
pgaccess but not for you.  (I notice that pgaccess uses the conninfo
style of arguments to pg_connect, but that shouldn't make a
difference...)

Can you provide a stack backtrace from the core file?
        regards, tom lane


pgsql-interfaces by date:

Previous
From: Matthias Teege
Date:
Subject: pg_connect dumps core
Next
From: Peter Eisentraut
Date:
Subject: Re: Merging PyGreSQL development into PostgreSQL