Re: Broken code in pquery.c

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Broken code in pquery.c
Date: 2004-03-18 23:26:29
Message-ID: 200403182326.i2INQTZ22677@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Thanks. Fixed. Not sure how it happened.

---------------------------------------------------------------------------

Tom Lane wrote:
> The if() statement at line 418 in pquery.c seems a bit bereft of
> controlled statement; looks like a broken log_executor_stats patch.
>
> if (portal->strategy != PORTAL_MULTI_QUERY)
> {
> ereport(DEBUG3,
> (errmsg_internal("PortalRun")));
> /* PORTAL_MULTI_QUERY logs its own stats per query */
> if (log_executor_stats)
> ResetUsage();
> }
>
> ---> if (log_executor_stats && portal->strategy != PORTAL_MULTI_QUERY)
>
> /*
> * Check for improper portal use, and mark portal active.
> */
> if (portal->portalDone)
> ereport(ERROR,
> (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
> errmsg("portal \"%s\" cannot be run anymore", portal->name)));
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2004-03-18 23:28:22 Re: Will auto-cluster be in 7.5?
Previous Message Andrew Dunstan 2004-03-18 23:00:58 Re: [HACKERS] compile warning in CVS HEAD