> "Tom Lane" <tgl@sss.pgh.pa.us> wrote:
> > ERROR: table "schema"."foo" does not exist
> >
> > which is just plain ugly.
Why not wrap all 'identifier' outputs in a call to the quoting function, so
the above message would in fact appear as:
table schema.foo does not exist
but with a space in it it would appear like this:
table "schema 2".foo does not exist
Chris