> Tom Lane wrote:
> > 
> > Bruce Momjian <[EMAIL PROTECTED]> writes:
> > > There is no user-visible mapping, though the number is the process id.
> > > You could use that.  I think you can get the backend process id somehow,
> > > but I am not sure how.  Anyone?
> > 
> > If you're using libpq, there is a function to retrieve the backend's PID
> > from the PGconn (PQbackendPID).  I don't think any of the other client
> > libraries provide this (yet).
> 
> I installed getpid() as a user-defined function (while testing an idea)
> - it seemed to work and I assumed it was the backend pid I was getting.

Yes, that is the _nify_ fix I was thinking about.  Use the proper path
for libc and:

  CREATE FUNCTION getpid () returns int4 as '/lib/libc.so.6' LANGUAGE 'C';
  SELECT getpid();



-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [EMAIL PROTECTED]               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to