Fix hang up when a SELECT query has error inside transaction block. It
authorYoshiyuki Asaba <y-asaba at pgfoundry.org>
Wed, 25 Jul 2007 07:01:05 +0000 (07:01 +0000)
committerYoshiyuki Asaba <y-asaba at pgfoundry.org>
Wed, 25 Jul 2007 07:01:05 +0000 (07:01 +0000)
commit71c1640a77d0205ee81ad787f3e1706379859148
treeeccba4720b5582168391bab4a39d0a56a8aea4be
parent545a05a3d282d507b22fbffe07eefd9353058859
Fix hang up when a SELECT query has error inside transaction block. It
occurs only in simple query protocol. We reproduce the bug with the
following operation.

  BEGIN;
  SELECT * FROM non_exist_table; <-- ERROR
  SELECT 1;
pool_process_query.c