Re: Socket command type I unknown

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Joel Richard <postgresql(at)joelrichard(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Socket command type I unknown
Date: 2006-02-04 06:16:55
Message-ID: 16672.1139033815@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Joel Richard <postgresql(at)joelrichard(dot)com> writes:
> ... we occasionally get the following message in our apache log
> file. I'm looking for information on what it means:

> DBD::Pg::db selectrow_array failed: FATAL: Socket command type I
> unknown

This looks to me like a protocol-level incompatibility: probably the
client code is sending data in a slightly different format than the
server is expecting, or one side or the other is off-by-one about
message lengths, or something like that. One way or another the
server is receiving an 'I' when it wasn't expecting that.

I'm not aware of any such bugs on the server side in 7.3.4. What I
suspect is a problem on the DBD::Pg side, where you did not specify
what version you are using ... but if it's recent, it probably thinks
that talking to 7.3.4 is a legacy problem ...

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Philippe Ferreira 2006-02-04 10:43:17 Re: Bug with sequences and WAL ?
Previous Message Joel Richard 2006-02-04 06:06:03 Socket command type I unknown