Re: log_error_verbosity function display

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: log_error_verbosity function display
Date: 2010-02-11 19:35:18
Message-ID: 201002111935.o1BJZIx17148@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Alvaro Herrera wrote:
> Bruce Momjian wrote:
>
> > FYI, here is the output that had me confused:
> >
> > ERROR: 42P01: relation "lkjasdf" does not exist at character 15
> > LOCATION: parserOpenTable, parse_relation.c:858
> > STATEMENT: select * from lkjasdf;
>
> How about something like
>
> ERROR: 42P01: relation "lkjasdf" does not exist at character 15
> LOCATION: parserOpenTable function in file parse_relation.c:858
> STATEMENT: select * from lkjasdf;

Well, that looks good, but perhaps we can trim it down a bit:

ERROR: 42P01: relation "lkjasdf" does not exist at character 15
LOCATION: function parserOpenTable, file parse_relation.c:858
STATEMENT: select * from lkjasdf;

or even shorter:

ERROR: 42P01: relation "lkjasdf" does not exist at character 15
LOCATION: parserOpenTable() in file parse_relation.c:858
STATEMENT: select * from lkjasdf;

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2010-02-11 19:36:37 Re: Re: [COMMITTERS] pgsql: Remove old-style VACUUM FULL (which was known for a little while
Previous Message Robert Haas 2010-02-11 19:25:48 Re: [PATCH] Provide rowcount for utility SELECTs