Re: [PATCHES] Proposed patch to change "missing FROM" messages

2006-01-09 Thread Tom Lane
Michael Glaesemann <[EMAIL PROTECTED]> writes: > For clarity, I'd rewrite this hint as > There is an entry for table "a", ... Done. Anyone have any other suggestions for wording improvements? regards, tom lane ---(end of broadcast)

Re: [PATCHES] Proposed patch to change "missing FROM" messages

2006-01-09 Thread Michael Glaesemann
On Jan 10, 2006, at 8:32 , Tom Lane wrote: Attached is a proposed change to create hopefully-more-useful error messages in the cases where we currently say "missing FROM-clause entry". It's good to have these hints for users. Thanks, Tom. Patch: regression=# select * from a,b join c on (a

[PATCHES] Proposed patch to change "missing FROM" messages

2006-01-09 Thread Tom Lane
Attached is a proposed change to create hopefully-more-useful error messages in the cases where we currently say "missing FROM-clause entry". Some examples of what it does: Patch: regression=# select * from a,b join c on (a.aa = c.cc); ERROR: invalid reference to FROM-clause entry for table "a" H