"Kevin Grittner" <Kevin.Grittner@xxxxxxxxxxxx> writes: > The SELECT statement was easy to find, and it became clear that a > programmer had code which was incorrectly canceling a JDBC > Statement after reaching the end of the (empty) ResultSet. One > time out of 1,799 this was causing the error we were seeing on > the subsequent commit, which strikes me as a bug. > We've already changed the offending code to avoid the invocation > of the Statement.cancel method. Not that it merits high priority, but > it might make sense for PostgreSQL to behave more consistently on > a commit when a statement within the database transaction has been > canceled. There currently is a race condition where if the commit > comes fast enough after the Statement.cancel, it receives the error > which is the subject of this thread. Yeah. The Query Cancel protocol has a potential race condition in it: the cancel request is not synchronous with respect to your existing connection (it's actually sent over a different connection). If you try to send another command immediately, it's possible that the new command gets to the backend before the cancel signal does, and then the cancel zaps your new command instead of the one you intended. This has been discussed before (try the pgsql-jdbc list archives). I believe we concluded that an appropriate fix was to not consider the cancel request "done" until the client sees the separate connection dropped by the postmaster. libpq's cancel functions wait for that to happen, and I thought that JDBC had been fixed as well --- maybe you are using an old driver version? Of course, if the internal threading in your app is such that you might issue another command before the Statement.cancel method finishes, then it's your own bug. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly