Re: psql line number reporting from stdin - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: psql line number reporting from stdin
Date
Msg-id 1322933252.26266.3.camel@vanquo.pezone.net
Whole thread Raw
In response to psql line number reporting from stdin  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-hackers
On lör, 2011-11-26 at 22:36 +0200, Peter Eisentraut wrote:
> There is a long-standing oddity in psql that running
> 
> psql -f foo.sql
> 
> returns error messages with file name and line number, like
> 
> psql:foo.sql:1: ERROR:  syntax error at or near "foo"
> 
> but running
> 
> psql < foo.sql does not.  I suggest we change the latter to print
> 
> psql:<stdin>:1: ERROR:  syntax error at or near "foo"

It turns out that running

psql -f -

already used to print

psql:<stdin>:1: ERROR:  blah

except that it got broken between 8.4 and 9.0 (commit b291c0fb), and now
prints

psql:-:1: ERROR:  blah


I'll try to find a way to fix that and integrate it with the change I'm
proposing.




pgsql-hackers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: Re: Bug in walsender when calling out to do_pg_stop_backup (and others?)
Next
From: Tom Lane
Date:
Subject: Re: why local_preload_libraries does require a separate directory ?