problem about message type 0x45

From: Yann-Ju Chu <yjchui(at)ms(dot)chttl(dot)com(dot)tw>
To: pgsql-hackers(at)postgresql(dot)org
Subject: problem about message type 0x45
Date: 1999-09-07 06:32:03
Message-ID: 37D4B163.D7593BC9@ms.chttl.com.tw
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


I am using the posgresql 6.5.1.

I have begin a transaction and insert a lot of tuples in the
transaction. The simplified code is as following:

----------------------------------
res = PQexec(conn,"BEGIN");
PQclear(res);

PQexec(conn, "INSERT INTO qms_table (idr1, idr2, sequence) VALUES ('chu1', 'wind1', 0)" );
PQclear(res);

PQexec(conn, "INSERT INTO qms_table (idr1, idr2, sequence) VALUES ('chu1', 'wind1', 1)" );
PQclear(res);

....

res = PQexec(conn,"END");
PQclear(res);
-------------------------------

But I got a message as:

Backend message type 0x45 arrived while idle

When inserting the third or forth tuples, and the backend process exits.

Does anybody know what the message type 0x45 means? What document can I find
the related information? And does any body know what may be the reason casued the
problem?
Thanks

Browse pgsql-hackers by date

  From Date Subject
Next Message Andreas Zeugswetter 1999-09-07 07:26:24 Re: [HACKERS] DROP TABLE inside transaction block
Previous Message Vadim Mikheev 1999-09-07 04:13:39 Re: [HACKERS] DROP TABLE inside transaction block